1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wikijs_ynh.git synced 2024-09-03 20:36:09 +02:00
wikijs_ynh/conf/nginx.conf

19 lines
603 B
Nginx Configuration File
Raw Normal View History

2019-01-29 21:56:56 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
2023-04-06 23:23:09 +02:00
location __PATH__/ {
2019-01-29 21:56:56 +01:00
2021-02-26 01:29:18 +01:00
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
client_max_body_size 50M;
2021-01-11 16:38:49 +01:00
proxy_set_header Accept-Encoding "";
2023-04-06 23:23:09 +02:00
proxy_pass http://127.0.0.1:__PORT__;
2023-07-04 20:49:26 +02:00
proxy_set_header Host $host;
2019-01-29 21:56:56 +01:00
proxy_set_header X-Real-IP $remote_addr;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_next_upstream error timeout http_502 http_503 http_504;
# Include SSOWAT user panel.
2022-07-06 23:49:44 +02:00
#include conf.d/yunohost_panel.conf.inc;
2019-01-29 21:56:56 +01:00
}