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

54 lines
1.4 KiB
Nginx Configuration File
Raw Normal View History

2021-04-13 21:40:34 +02:00
location / {
2021-03-24 16:15:33 +01:00
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
client_max_body_size 50M;
2021-06-10 10:04:35 +02:00
2021-03-24 16:15:33 +01:00
proxy_pass http://127.0.0.1:__PORT__/;
2021-05-27 10:07:16 +02:00
proxy_set_header Connection "";
2021-03-24 16:15:33 +01:00
proxy_set_header Host $http_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 X-Frame-Options SAMEORIGIN;
proxy_buffers 256 16k;
proxy_buffer_size 16k;
proxy_read_timeout 600s;
proxy_cache_revalidate on;
proxy_cache_min_uses 2;
proxy_cache_use_stale timeout;
proxy_cache_lock on;
proxy_http_version 1.1;
# Include SSOWAT user panel.
2021-05-27 10:07:16 +02:00
include conf.d/yunohost_panel.conf.inc;
more_clear_input_headers 'Accept-Encoding';
2021-03-24 16:15:33 +01:00
}
2021-04-13 21:40:34 +02:00
location /ws/ {
2021-03-24 17:44:28 +01:00
proxy_pass http://127.0.0.1:__PORT__/;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
client_max_body_size 50M;
proxy_set_header Host $http_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 X-Frame-Options SAMEORIGIN;
proxy_buffers 256 16k;
proxy_buffer_size 16k;
client_body_timeout 60;
send_timeout 300;
lingering_timeout 5;
proxy_connect_timeout 1d;
proxy_send_timeout 1d;
proxy_read_timeout 1d;
}
2021-04-13 21:40:34 +02:00
location /uploads/ {
2021-04-05 23:05:06 +02:00
alias __FILES_PATH__/uploads/ ;
}