Skip to content

Commit 874dfc2

Browse files
test
1 parent b13ceac commit 874dfc2

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

nginx.conf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,15 @@ http {
2424
listen 8080;
2525

2626
location /live/ {
27-
proxy_pass https://live.hub.netdb.at;
27+
resolver 8.8.8.8;
28+
29+
proxy_ssl_server_name on;
30+
proxy_set_header Host live.hub.netdb.at;
2831
proxy_set_header X-Real-IP $remote_addr;
2932
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
3033
proxy_set_header X-Forwarded-Proto $scheme;
34+
35+
proxy_pass https://live.hub.netdb.at;
3136
}
3237

3338
location ~ ^/avatar/([0-9]+)$ {

0 commit comments

Comments
 (0)