Docker 컨테이너인 https://example.com
Proxy_pass 를 사용하여 Ubuntu20에서 Nginx를 실행하고 있습니다 . 프록시에 0.0.0.0:8000
도달하면 예상대로 작동하지만 루트 경로 에 도달하면 . 하위 경로는 제대로 프록시 처리되지만 루트 경로는 리디렉션되는 이유를 이해할 수 없습니다.https://example.com/literally/any/path/at/all
https://example.com
https://docker:8000
내 Nginx 사이트 구성:
upstream docker {
server 0.0.0.0:8000;
}
server {
listen 80;
server_name example.com www.example.com mail.example.com;
location /.well-known {
alias /ssl/well-known;
}
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl;
server_name example.com www.example.com mail.example.com;
ssl_certificate /etc/letsencrypt/live/example.com/cert.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://docker;
}
}