rust_webhook_ynh/conf/nginx.conf

8 lines
188 B
Nginx Configuration File
Raw Normal View History

2022-11-19 14:37:56 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2022-11-19 17:51:03 +01:00
proxy_set_header Host $host;
proxy_buffering off;
2022-11-19 14:37:56 +01:00
2022-11-19 17:51:03 +01:00
proxy_pass http://localhost:__PORT__/;
2022-11-19 14:37:56 +01:00
}