mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 23:21:13 +01:00
18 lines
318 B
Text
18 lines
318 B
Text
|
## thub_tor.conf
|
||
|
|
||
|
server {
|
||
|
listen localhost:3012;
|
||
|
listen [::1]:3012;
|
||
|
server_name _;
|
||
|
|
||
|
access_log /var/log/nginx/access_thub.log;
|
||
|
error_log /var/log/nginx/error_thub.log;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://127.0.0.1:3010;
|
||
|
|
||
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
||
|
}
|
||
|
|
||
|
}
|