mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 07:07:46 +01:00
26 lines
560 B
Text
26 lines
560 B
Text
## btcpay_ssl.conf
|
|
|
|
server {
|
|
listen 23001 ssl;
|
|
listen [::]:23001 ssl;
|
|
server_name _;
|
|
|
|
include /etc/nginx/snippets/ssl-params.conf;
|
|
include /etc/nginx/snippets/ssl-certificate-app-data.conf;
|
|
|
|
access_log /var/log/nginx/access_btcpay.log;
|
|
error_log /var/log/nginx/error_btcpay.log;
|
|
|
|
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;
|
|
}
|
|
|
|
}
|