mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-03-01 17:07:18 +01:00
* lnproxy: check if payment hashes match #3636 * go update to 1.19.5 and verify checkums * add lnproxy install script * add lnproxy-webui * pin versions and fix formatting * add nginx configs for lnproxy
26 lines
587 B
Text
26 lines
587 B
Text
## lnproxy_tor.conf
|
|
|
|
server {
|
|
listen 4750;
|
|
server_name _;
|
|
|
|
include /etc/nginx/snippets/ssl-params.conf;
|
|
include /etc/nginx/snippets/ssl-certificate-app-data.conf;
|
|
|
|
include /etc/nginx/snippets/gzip-params.conf;
|
|
|
|
access_log /var/log/nginx/access_lnproxy.log;
|
|
error_log /var/log/nginx/error_lnproxy.log;
|
|
|
|
location /api/ {
|
|
proxy_pass http://127.0.0.1:4747;
|
|
|
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:4748;
|
|
|
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
|
}
|
|
}
|