nginx-configs/conf.d/mumble.conf

15 lines
342 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name mumble.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion;
location / {
proxy_pass https://mumble.vern.cc;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}