send_ynh/conf/nginx.conf

23 lines
665 B
Nginx Configuration File
Raw Permalink Normal View History

2022-10-17 11:13:01 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2021-08-25 17:42:59 +02:00
2022-10-17 12:24:07 +02:00
proxy_pass http://127.0.0.1:__PORT__;
2021-08-25 21:04:01 +02:00
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
2021-08-25 17:42:59 +02:00
}
location /api/ws {
2023-05-20 19:59:16 +02:00
proxy_pass http://127.0.0.1:__PORT__;
2021-08-25 17:42:59 +02:00
proxy_set_header X-Real-IP $remote_addr;
2023-07-04 19:16:09 +02:00
proxy_set_header Host $host;
2021-08-25 17:42:59 +02:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Connection "";
proxy_connect_timeout 4000s;
proxy_read_timeout 4000s;
}