mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 15:10:38 +01:00
20 lines
438 B
Text
20 lines
438 B
Text
## btcrpcexplorer_ssl.conf
|
|
|
|
server {
|
|
listen 3021 ssl;
|
|
listen [::]:3021 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_thub.log;
|
|
error_log /var/log/nginx/error_thub.log;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:3020;
|
|
|
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
|
}
|
|
|
|
}
|