mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 15:10:38 +01:00
21 lines
420 B
Text
21 lines
420 B
Text
## lnbits_tor.conf
|
|
|
|
server {
|
|
listen localhost:3302;
|
|
listen [::1]:3302;
|
|
server_name _;
|
|
|
|
access_log /var/log/nginx/access_sphinxrelay.log;
|
|
error_log /var/log/nginx/error_sphinxrelay.log;
|
|
|
|
location /static {
|
|
root /home/sphinxrelay/sphinxrelay/sphinxrelay;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:3300;
|
|
|
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
|
}
|
|
|
|
}
|