diff options
Diffstat (limited to 'images/router')
-rw-r--r-- | images/router/nginx/http/wiki | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/images/router/nginx/http/wiki b/images/router/nginx/http/wiki new file mode 100644 index 0000000..b10320c --- /dev/null +++ b/images/router/nginx/http/wiki @@ -0,0 +1,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; + } +} |