mirror of
https://github.com/YunoHost-Apps/etherpad_ynh.git
synced 2024-09-03 18:36:10 +02:00
Fix
This commit is contained in:
parent
260a432b19
commit
2a8bebd43c
3 changed files with 17 additions and 5 deletions
|
@ -5,12 +5,24 @@ location __PATH__/ {
|
||||||
rewrite ^ https://$server_name$request_uri? permanent;
|
rewrite ^ https://$server_name$request_uri? permanent;
|
||||||
}
|
}
|
||||||
|
|
||||||
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||||||
#sub_path_only rewrite ^__PATH__/admin$ __PATH__/admin/ permanent;
|
#sub_path_only rewrite ^__PATH__/admin$ __PATH__/admin/ permanent;
|
||||||
|
|
||||||
proxy_pass http://127.0.0.1:__PORT__/;
|
proxy_pass http://127.0.0.1:__PORT__/;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
|
proxy_pass_header Server;
|
||||||
|
|
||||||
|
# be careful, this line doesn't override any proxy_buffering on set in a conf.d/file.conf
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
more_set_headers "X-Frame-Options : ALLOWALL";
|
proxy_set_header X-Real-IP $remote_addr; # http://wiki.nginx.org/HttpProxyModule
|
||||||
|
proxy_set_header X-Forwarded-For $remote_addr; # EP logs to show the actual remote IP
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme; # for EP to set secure cookie flag when https is used
|
||||||
|
proxy_set_header Host $host; # pass the host header
|
||||||
|
proxy_http_version 1.1; # recommended with keepalive connections
|
||||||
|
|
||||||
|
# WebSocket proxying - from http://nginx.org/en/docs/http/websocket.html
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $connection_upgrade;
|
||||||
|
|
||||||
# Include SSOWAT user panel.
|
# Include SSOWAT user panel.
|
||||||
include conf.d/yunohost_panel.conf.inc;
|
include conf.d/yunohost_panel.conf.inc;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Etherpad-lite, the collaborative editor.
|
Description=Etherpad-lite, collaborative editing of documents in real-time.
|
||||||
After=syslog.target network.target postgresql.service
|
After=syslog.target network.target postgresql.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
# dependencies used by the app
|
# dependencies used by the app
|
||||||
pkg_dependencies="postgresql postgresql-contrib apt-transport-https"
|
pkg_dependencies="postgresql postgresql-contrib apt-transport-https"
|
||||||
|
|
||||||
nodejs_version=12
|
nodejs_version=13
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# PERSONAL HELPERS
|
# PERSONAL HELPERS
|
||||||
|
|
Loading…
Reference in a new issue