4
if를 사용하지 않고 Amazon ELB 뒤의 모든 http 요청을 https로 리디렉션
현재 http://www.example.org 및 https://www.example.org 모두를 제공하는 ELB가 있습니다 . http://www.example.org를 가리키는 모든 요청 이 https://www.example.org 로 리디렉션 되도록 설정하고 싶습니다 . ELB는 다음을 사용하여 https 요청을 http 요청으로 보냅니다. server { listen 80; server_name www.example.org; rewrite ^ https://$server_name$request_uri? permanent; } https://www.example.org에 대한 요청 은 여전히 nginx의 포트 80으로 보내지기 때문에 …