summaryrefslogtreecommitdiff
path: root/images/router/nginx/http.off/pad
blob: 5649d47f42fd219286e2c834035435b70cb998c5 (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.*;

  include snippets/ssl;
  include snippets/wellknown;

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