From a8f361f25f79099709b44864a05702d1fc239aeb Mon Sep 17 00:00:00 2001 From: tdurieux Date: Mon, 1 Apr 2024 06:58:00 +0100 Subject: [PATCH] fix: add missing file --- nginx.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..c744f4d --- /dev/null +++ b/nginx.conf @@ -0,0 +1,15 @@ +upstream backend { + server anonymous_github:5000; +} + +server { + listen 4000; + + resolver 127.0.0.11 valid=5s; + + include /etc/nginx/mime.types; + + location / { + proxy_pass http://backend/; + } +} \ No newline at end of file