diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..8e6abb2 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,13 @@ +user nginx; + +events { + worker_connections 63353; +} +http { + server { + listen 4000; + location / { + proxy_pass http://forgeplus:5000; + } + } +} \ No newline at end of file