Compare commits

..

No commits in common. "3cd0b50b3caaf75ac416ed26d3ba7428ad16e0f5" and "03386f4b5d0c6016eba15373c213d68c8d49f2b5" have entirely different histories.

8
dist/nginx.conf vendored
View file

@ -116,8 +116,8 @@ server {
location ^~ /api/v1/streaming { location ^~ /api/v1/streaming {
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP 127.0.0.1; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For 127.0.0.1; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Proxy ""; proxy_set_header Proxy "";
@ -135,8 +135,8 @@ server {
location @proxy { location @proxy {
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP 127.0.0.1; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For 127.0.0.1; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Proxy ""; proxy_set_header Proxy "";
proxy_pass_header Server; proxy_pass_header Server;