From 56483d804ad68adf7c1b1e27dff2ff057c8313ab Mon Sep 17 00:00:00 2001 From: jade Date: Fri, 24 Jul 2026 17:41:33 +0900 Subject: [PATCH] chore: test nginx proxy to google --- nginx/blue.conf | 3 ++- nginx/green.conf | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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; } }