X-Git-Url: http://git.purplebirdman.com/proxy.git/blobdiff_plain/866dc074f84b4780a87e23141b1ce07b70002120..d33aa9fa9f6c080680f73b38824025228fa8ac67:/nginx.conf diff --git a/nginx.conf b/nginx.conf index a49653b..f3c2f23 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,10 +1,22 @@ -events {} +worker_processes 1; + +events { + worker_connections 1024; +} http { server { + listen 80; server_name public.purplebirdman.online; location / { proxy_pass http://public_web; } } + server { + listen 80; + server_name forum.purplebirdman.online; + location / { + proxy_pass http://forum_web; + } + } }