summaryrefslogtreecommitdiff
path: root/images/router/nginx/http.off/pad
blob: 4aa0e2e68d7bc746a4764a92b8bbd1e48062b703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
  listen 443 ssl;
  listen [::]:443 ssl;

  server_name pad.tx0.co;

  include snippets/ssl;
  include snippets/wellknown;

  location / {
    auth_basic "pad";
    auth_basic_user_file pad/passwd;
    proxy_pass http://etherpad;
  }
}