summaryrefslogtreecommitdiffstats
path: root/pad-proxy/templates/etherpad.nginx.conf
blob: 92ba9743ded212a5b93b9cd07608713faf032996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 ~ ^/(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 /p/ {
    rewrite ^/p/(.*) /$1 redirect;
  }
  location ~ ^/$ {
    proxy_buffering off;
    proxy_pass http://etherpad_upstream;
  }
  location ~ ^/pad-lister($|\/.*) {
    proxy_buffering off;
    proxy_pass http://etherpad_upstream;
  }
  location / {
    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/;
    proxy_redirect / /p/;
    proxy_read_timeout  90;
  }
}