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