1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/snserver_ynh.git synced 2024-09-03 20:26:22 +02:00

Fix nginx http_host -> host

This commit is contained in:
Salamandar 2024-01-15 23:21:30 +01:00
parent 501611917e
commit c0cc162d1f

View file

@ -2,7 +2,7 @@
location __PATH__/ { location __PATH__/ {
proxy_pass http://127.0.0.1:__PORT_API_GATEWAY__/; proxy_pass http://127.0.0.1:__PORT_API_GATEWAY__/;
proxy_http_version 1.1; proxy_http_version 1.1;
proxy_set_header Host $http_host; proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade; proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
@ -17,7 +17,7 @@ location = __PATH__/ {
location __PATH__/files/ { location __PATH__/files/ {
proxy_pass http://127.0.0.1:__PORT_FILES__/; proxy_pass http://127.0.0.1:__PORT_FILES__/;
proxy_http_version 1.1; proxy_http_version 1.1;
proxy_set_header Host $http_host; proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade; proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;