We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b13ceac commit 874dfc2Copy full SHA for 874dfc2
1 file changed
nginx.conf
@@ -24,10 +24,15 @@ http {
24
listen 8080;
25
26
location /live/ {
27
- proxy_pass https://live.hub.netdb.at;
+ resolver 8.8.8.8;
28
+
29
+ proxy_ssl_server_name on;
30
+ proxy_set_header Host live.hub.netdb.at;
31
proxy_set_header X-Real-IP $remote_addr;
32
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
33
proxy_set_header X-Forwarded-Proto $scheme;
34
35
+ proxy_pass https://live.hub.netdb.at;
36
}
37
38
location ~ ^/avatar/([0-9]+)$ {
0 commit comments