mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 23:21:13 +01:00
17 lines
315 B
Text
17 lines
315 B
Text
## rtl_tor.conf
|
|
|
|
server {
|
|
listen localhost:3002;
|
|
listen [::1]:3002;
|
|
server_name _;
|
|
|
|
access_log /var/log/nginx/access_rtl.log;
|
|
error_log /var/log/nginx/error_rtl.log;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:3000;
|
|
|
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
|
}
|
|
|
|
}
|