mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 15:10:38 +01:00
24 lines
518 B
Text
24 lines
518 B
Text
|
## lnbits_https_5003.conf
|
||
|
|
||
|
server {
|
||
|
listen localhost:5003 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_lnbits_https_5001.log;
|
||
|
error_log /var/log/nginx/error_lnbits_https_5001.log;
|
||
|
|
||
|
location /static {
|
||
|
root /home/lnbits/lnbits/lnbits;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://127.0.0.1:5000;
|
||
|
|
||
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
||
|
}
|
||
|
|
||
|
}
|