diff --git a/nginx/blue.conf b/nginx/blue.conf index 981ca368..8dbbf021 100644 --- a/nginx/blue.conf +++ b/nginx/blue.conf @@ -1,6 +1,7 @@ server { listen 8281; location / { - return 200 "HELLO FROM NGINX"; + proxy_pass https://www.google.com; + proxy_set_header Host www.google.com; } } diff --git a/nginx/green.conf b/nginx/green.conf index 981ca368..8dbbf021 100644 --- a/nginx/green.conf +++ b/nginx/green.conf @@ -1,6 +1,7 @@ server { listen 8281; location / { - return 200 "HELLO FROM NGINX"; + proxy_pass https://www.google.com; + proxy_set_header Host www.google.com; } }