Skip to content
Snippets Groups Projects
Commit 42b7e2f5 authored by nimrod's avatar nimrod
Browse files

transmission.shore.co.il

Proxy the Transmission webui, require authentication.
parent ca5addac
No related branches found
No related tags found
No related merge requests found
map $host $transmission { default transmission-daemon; }
server {
listen 80;
listen [::]:80;
server_name transmission.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
include snippets/www-acme-challenge.conf;
include snippets/redirect-https.conf;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name transmission.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
include snippets/ssl.conf;
include snippets/vouch.conf;
location / {
proxy_pass http://$transmission:9091;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment