nginx-configs/conf.d/mumble.conf

15 lines
342 B
Plaintext
Raw Normal View History

2022-07-30 18:19:52 +00:00
server {
listen 80;
listen [::]:80;
server_name mumble.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion;
2023-05-23 20:01:44 +00:00
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;
}
2022-07-25 10:55:46 +00:00
}