feat: auth.ro-being.com 서버 설정 추가 - proxy_pass 끝에 / 포함
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 2s

This commit is contained in:
happybell80 2025-07-17 00:16:27 +09:00
parent 63e27e624b
commit 81046eb9be

View File

@ -234,3 +234,21 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
}
# Auth server configuration
server {
listen 80;
server_name auth.ro-being.com;
location / {
proxy_pass http://localhost:9000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /.well-known/acme-challenge/ {
alias /var/www/html/.well-known/acme-challenge/;
}
}