1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hedgedoc_ynh.git synced 2024-09-03 19:25:52 +02:00
hedgedoc_ynh/conf/nginx.conf

28 lines
992 B
Nginx Configuration File
Raw Normal View History

2023-02-20 06:52:10 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2020-11-19 21:41:03 +01:00
2024-05-28 23:50:11 +02:00
proxy_pass http://127.0.0.1:__PORT_FRONTEND__;
proxy_set_header X-Forwarded-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;
}
2020-11-19 21:41:03 +01:00
2024-05-28 23:50:11 +02:00
location ~ ^__PATH__/(api|public|uploads|apidoc)/ {
proxy_pass http://127.0.0.1:__PORT_BACKEND__;
proxy_set_header X-Forwarded-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;
}
2020-11-19 21:41:03 +01:00
2024-05-28 23:50:11 +02:00
location __PATH__/realtime {
proxy_pass http://127.0.0.1:__PORT_BACKEND__;
proxy_set_header X-Forwarded-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;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
2020-11-19 21:41:03 +01:00
}