mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 15:10:38 +01:00
23 lines
496 B
Text
23 lines
496 B
Text
## lnbits_5003_https.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.log;
|
|
error_log /var/log/nginx/error_lnbits.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;
|
|
}
|
|
|
|
}
|