summaryrefslogtreecommitdiff
path: root/images/router/nginx/http/znc
blob: 2809f2339f4c661e5b71c45fe670ee585d75842f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
server {
  listen 443 ssl http2;
  listen [::]:443 ssl http2;

  server_name z.* znc.*;

  include snippets/ssl_http;
  include snippets/wellknown;

  location / {
    proxy_pass http://znc;
  }
}