mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
Fix nginx BTCPay websocket Notifications requests and also BTCPayServer Vault request (not in Tor) (#1539)
This commit is contained in:
parent
cdfdb365e1
commit
164ff4d9ac
2 changed files with 11 additions and 0 deletions
|
@ -14,6 +14,12 @@ server {
|
|||
location / {
|
||||
proxy_pass http://127.0.0.1:23000;
|
||||
|
||||
|
||||
# For websockets
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection $http_connection;
|
||||
|
||||
|
||||
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
||||
}
|
||||
|
||||
|
|
|
@ -14,6 +14,11 @@ server {
|
|||
location / {
|
||||
proxy_pass http://127.0.0.1:23000;
|
||||
|
||||
# For websockets
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection $http_connection;
|
||||
|
||||
|
||||
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue