blob: b10320c50fd1b9722cdda2795c6c1d94505c5bdb (
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 w.*;
include snippets/ssl_http;
include snippets/wellknown;
location / {
proxy_pass http://wiki;
}
}
|