mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 15:10:38 +01:00
25 lines
554 B
Text
25 lines
554 B
Text
|
## sphinxrelay_tor_ssl.conf
|
||
|
|
||
|
server {
|
||
|
listen localhost:3303 ssl;
|
||
|
listen [::1]:3303 ssl;
|
||
|
server_name _;
|
||
|
|
||
|
include /etc/nginx/snippets/ssl-params.conf;
|
||
|
include /etc/nginx/snippets/ssl-certificate-app-data-tor.conf;
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
}
|