summaryrefslogtreecommitdiff
path: root/images/router/nginx/http/wiki
diff options
context:
space:
mode:
Diffstat (limited to 'images/router/nginx/http/wiki')
-rw-r--r--images/router/nginx/http/wiki13
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;
+ }
+}