chore: test nginx proxy to google
Some checks failed
Deploy to OCIWP / deploy (push) Has been cancelled

This commit is contained in:
jade
2026-07-24 17:41:33 +09:00
parent 1c353ce3a7
commit 56483d804a
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
server { server {
listen 8281; listen 8281;
location / { location / {
return 200 "HELLO FROM NGINX"; proxy_pass https://www.google.com;
proxy_set_header Host www.google.com;
} }
} }

View File

@@ -1,6 +1,7 @@
server { server {
listen 8281; listen 8281;
location / { location / {
return 200 "HELLO FROM NGINX"; proxy_pass https://www.google.com;
proxy_set_header Host www.google.com;
} }
} }