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

22 lines
606 B
Nginx Configuration File
Raw Normal View History

2020-10-20 13:46:23 +02:00
location __PATH__/ {
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2020-12-13 14:00:39 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
#sub_path_only rewrite ^__PATH__/admin$ __PATH__/admin/ permanent;
proxy_pass http://127.0.0.1:__PORT__/;
proxy_set_header Host $host;
proxy_buffering off;
more_set_headers "X-Frame-Options : ALLOWALL";
2020-10-20 13:46:23 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2014-01-07 22:15:39 +01:00
}
2020-12-13 14:00:39 +01:00
location ~* __PATH__/p/[^/]*(_|%|\*)[^/]*/export/etherpad {
return 404;
}