From f4c477bad642601e025e1c4a1c4cc9aec05b9327 Mon Sep 17 00:00:00 2001 From: Till Höppner Date: Sun, 1 Oct 2017 22:38:50 +0200 Subject: Serve wiki --- images/router/nginx/http/wiki | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 images/router/nginx/http/wiki (limited to 'images/router/nginx/http') 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; + } +} -- cgit v1.2.3