서버 {
listen 443;
server_name localhost api.humanchan.me;
ssl on;
root html;
index index.html index.htm;
if ($http_host ~ "^api.humanchan.me$") {
rewrite ^(.*) https://www.humanchan.me/api/$1 영구;
}
위치 ^~ /api/ {
proxy_pass http://127.0.0.1:7001;
proxy_redirect off;
proxy_set_header X-Real-Ip $remote_addr; -Proto$ 계획;
}
}
위의 서버는 도메인 이름 api.humanchan.me를 대상으로 하므로 아래에 작성된 /api/는 쓸모가 없습니다. 게다가 이 구성은 이제 api.humanchan.me에 대해 www.humanchan.me/api/로 연결됩니다. 문제?