web,etherpad: add etherpad addon for sharing document

This commit is contained in:
netaskd
2019-06-17 16:22:00 +03:00
committed by Saúl Ibarra Corretgé
parent 2f9192c238
commit 62f2d11cab
10 changed files with 485 additions and 2 deletions

View File

@@ -32,3 +32,19 @@ location /http-bind {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host {{ .Env.XMPP_DOMAIN }};
}
{{ if .Env.ETHERPAD_URL_BASE }}
# Etherpad-lite
location /etherpad/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_pass {{ .Env.ETHERPAD_URL_BASE }}/;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_buffering off;
proxy_set_header Host {{ .Env.XMPP_DOMAIN }};
}
{{ end }}