chore(nginx): proxy /skill-email/ to 192.168.219.52:8501 (HTTP/HTTPS)
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 2s

This commit is contained in:
happybell80 2025-10-20 00:30:46 +09:00
parent 1d68a511ea
commit 1e28ff2a93

View File

@ -107,7 +107,7 @@ server {
# Skill Email API endpoints # Skill Email API endpoints
location /skill-email/ { location /skill-email/ {
proxy_pass http://localhost:8501/; proxy_pass http://192.168.219.52:8501/;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@ -243,7 +243,7 @@ server {
# Skill Email API endpoints # Skill Email API endpoints
location /skill-email/ { location /skill-email/ {
proxy_pass http://localhost:8501/; proxy_pass http://192.168.219.52:8501/;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;