1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/codimd_ynh.git synced 2024-09-03 18:16:32 +02:00
codimd_ynh/conf/nginx.conf

20 lines
506 B
Nginx Configuration File
Raw Normal View History

location ^~ __PATH__/ {
2019-11-28 02:05:34 +01:00
proxy_pass http://127.0.0.1:__PORT__/;
2018-11-21 16:11:09 +01:00
proxy_http_version 1.1;
proxy_set_header Connection "upgrade";
proxy_set_header Upgrade $http_upgrade;
proxy_set_header X-Forwarded-For $remote_addr;
2020-05-21 12:49:24 +02:00
# setup for image upload
client_max_body_size 256M;
proxy_max_temp_file_size 1024M;
2020-05-21 12:49:24 +02:00
proxy_read_timeout 300;
proxy_connect_timeout 300;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
more_clear_input_headers 'Accept-Encoding';
2019-11-28 02:05:34 +01:00
}