1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/etherpad_mypads_ynh.git synced 2024-09-03 18:36:09 +02:00
etherpad_mypads_ynh/conf/nginx.conf
ericgaspar 51a380c777
4.3
2021-11-19 18:49:14 +01:00

21 lines
696 B
Nginx Configuration File

location __PATH__/ {
#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";
# Recommended proxy_http version for keepalive connections
# https://github.com/ether/etherpad-lite/wiki/How-to-put-Etherpad-Lite-behind-a-reverse-Proxy#nginx
proxy_http_version 1.1;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
location ~* __PATH__/p/[^/]*(_|%|\*)[^/]*/export/etherpad {
return 404;
}