From 5d2d46d8dca912614d6893a9f3ff30a487e76a77 Mon Sep 17 00:00:00 2001 From: iCrawl Date: Thu, 24 Dec 2020 20:16:00 +0100 Subject: add docker support --- docker/nginx/chibisafe.moe.http.example.conf | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docker/nginx/chibisafe.moe.http.example.conf (limited to 'docker/nginx/chibisafe.moe.http.example.conf') diff --git a/docker/nginx/chibisafe.moe.http.example.conf b/docker/nginx/chibisafe.moe.http.example.conf new file mode 100644 index 0000000..0a0d507 --- /dev/null +++ b/docker/nginx/chibisafe.moe.http.example.conf @@ -0,0 +1,21 @@ +server { + listen 80; + listen [::]:80; + server_name chibisafe.moe; + + # security + include nginxconfig.io/security.conf; + + # logging + access_log /var/log/nginx/chibisafe.moe.access.log; + error_log /var/log/nginx/chibisafe.moe.error.log warn; + + # reverse proxy + location / { + proxy_pass http://localhost:5000; + include nginxconfig.io/proxy.conf; + } + + # additional config + include nginxconfig.io/general.conf; +} -- cgit v1.2.3