X-Git-Url: http://git.purplebirdman.com/proxy.git/blobdiff_plain/d33aa9fa9f6c080680f73b38824025228fa8ac67..57600a58ac8cff8033b0e08332c22a47709effc8:/nginx.conf diff --git a/nginx.conf b/nginx.conf index f3c2f23..19e214e 100644 --- a/nginx.conf +++ b/nginx.conf @@ -6,17 +6,25 @@ events { http { server { - listen 80; server_name public.purplebirdman.online; location / { proxy_pass http://public_web; + proxy_set_header Host $host; } } server { - listen 80; server_name forum.purplebirdman.online; location / { proxy_pass http://forum_web; + proxy_set_header Host $host; + } + } + server { + server_name kanban.purplebirdman.online; + client_max_body_size 20M; + location / { + proxy_pass http://kanboard_kanboard; + proxy_set_header Host $host; } } }