Nicolas Dorier

Results 663 comments of Nicolas Dorier

https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/435183

Could not find any solution. I guess we'll keep it that way then. :/

Yes, while I agree this should have been done from day 1, I am against changing it now as it will breaks quite a lot of things. (documentations and scripts)

Do not expose BTCPay Server directly, this is complicated. The best is having your NGINX which forward requests to the NGINX of BTCPay Server. Read https://docs.btcpayserver.org/FAQ/FAQ-Deployment/#can-i-use-an-existing-nginx-server-as-a-reverse-proxy-with-ssl-termination

The warning is right, you probably forgot something ``` proxy_set_header Host $http_host; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; ```

Can't help on my side. I gave up backup with lightning, the UX is too terrible. Just crossing finger it does not crash and not keeping lot's of money there.

hey @rokups using port 443 does not mean it is using HTTPs. The error says that the HTTP request is having the HOST of the request set to http, which...

I guess you fucked up one of your environment variables. You probably wanted to change `$BTCPAYSERVER_ADDITIONAL_FRAGMENTS` and fucked it up. Check its value with `echo $BTCPAYSERVER_ADDITIONAL_FRAGMENTS`

@Amacruz you can see that you have `BTCPAYGEN_ADDITIONAL_FRAGMENTS` as a string in the list, remove that. ``` BTCPAYGEN_ADDITIONAL_FRAGMENTS="opt-lnd-autopilot;opt-add-tor;opt-add-woocommerce;opt-add-btctransmuter;opt-lnd-autopilot;opt-lnd-autopilot;opt-add-woocommerce;opt-add-tor;opt-add-btctransmuter;opt-add-electrumx" ```

You have dups because instead of running ``` BTCPAYGEN_ADDITIONAL_FRAGMENTS="$BTCPAYGEN_ADDITIONAL_FRAGMENTS;opt-add-electrumx" ``` you ran ``` BTCPAYGEN_ADDITIONAL_FRAGMENTS="BTCPAYGEN_ADDITIONAL_FRAGMENTS;$BTCPAYGEN_ADDITIONAL_FRAGMENTS;opt-add-electrumx" ``` Or somethinglike that.