summaryrefslogtreecommitdiffstats
path: root/pad-proxy/templates/wikimedia.etherpad.nginx.conf
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2022-10-13 14:12:29 -0400
committerSacha Chua <sacha@sachachua.com>2022-10-13 14:12:29 -0400
commite618dfe5588d2c9c5d7fb954f81001f5f84d6e1f (patch)
tree792067f1691454fa7ee8ca6a6a90ec732a43eefc /pad-proxy/templates/wikimedia.etherpad.nginx.conf
parent02575eee5ec6fffccb233a42ba3e82a990df8fe2 (diff)
downloademacsconf-ansible-e618dfe5588d2c9c5d7fb954f81001f5f84d6e1f.tar.xz
emacsconf-ansible-e618dfe5588d2c9c5d7fb954f81001f5f84d6e1f.zip
Actually add pad-proxy, document things
Diffstat (limited to 'pad-proxy/templates/wikimedia.etherpad.nginx.conf')
-rw-r--r--pad-proxy/templates/wikimedia.etherpad.nginx.conf33
1 files changed, 33 insertions, 0 deletions
diff --git a/pad-proxy/templates/wikimedia.etherpad.nginx.conf b/pad-proxy/templates/wikimedia.etherpad.nginx.conf
new file mode 100644
index 0000000..2288c65
--- /dev/null
+++ b/pad-proxy/templates/wikimedia.etherpad.nginx.conf
@@ -0,0 +1,33 @@
+upstream etherpad_upstream {
+ server 127.0.0.1:9001;
+}
+server {
+ listen 80;
+ server_name {{ etherpad_server_name }};
+ access_log /var/log/nginx/{{ etherpad_server_name }}.access.log;
+ location /p/ {
+ rewrite ^/p/(.*) /$1 redirect;
+ }
+ location ~ ^/$ {
+ return 302 https://etherpad.wikimedia.org/p/emacsconf-2022;
+ }
+ location ~ ^/(locales/|locales.json|admin/|static/|pluginfw/|javascripts/|socket.io/|ep/|minified/|api/|ro/|error/|jserror/|favicon.ico|robots.txt) {
+ proxy_buffering off;
+ proxy_pass http://etherpad_upstream;
+ }
+ location ~ ^/pad-lister($|\/.*) {
+ proxy_buffering off;
+ proxy_pass http://etherpad_upstream;
+ }
+ location /direct/ {
+ rewrite /direct/(.*) /$1 break;
+ proxy_set_header Host $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_pass http://etherpad_upstream/p/;
+ }
+ location / {
+ rewrite /(.*) https://etherpad.wikimedia.org/p/emacsconf-$1 redirect;
+ }
+}