diff options
author | Till Höppner | 2017-10-01 22:38:50 +0200 |
---|---|---|
committer | Till Höppner | 2017-10-01 22:39:10 +0200 |
commit | f4c477bad642601e025e1c4a1c4cc9aec05b9327 (patch) | |
tree | 833b0338ca8c2c4aa0f95f03bb906ee1e3ffbd19 /images/router/nginx | |
parent | d14c15c595e9025637fdad360ca2c969c47b4258 (diff) | |
download | server-master.tar.gz server-master.tar.xz server-master.zip |
Diffstat (limited to 'images/router/nginx')
-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; + } +} |