From 81a9e33496ffa9dcc82c5352030fb61db2142f9e Mon Sep 17 00:00:00 2001 From: Clifton Palmer Date: Sun, 16 Jun 2019 16:50:11 -0500 Subject: [PATCH] Added set header for bb login --- nginx.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 41d51d7..814ac00 100644 --- a/nginx.conf +++ b/nginx.conf @@ -8,13 +8,15 @@ http { server { server_name public.purplebirdman.online; location / { - proxy_pass http://public_web:80; + proxy_pass http://public_web; + proxy_set_header Host $host; } } server { server_name forum.purplebirdman.online; location / { - proxy_pass http://forum_web:80; + proxy_pass http://forum_web; + proxy_set_header Host $host; } } } -- 2.47.2