22
Elastic Beanstalk에서 https를 강제하는 방법은 무엇입니까?
Elastic Beanstalk의 무료 사용 계층에서 https를 강제 할 수없는 것 같습니다. 상태 확인에 실패하지 않고 Amazon Elastic Beanstalk에서 https를 강제하는 방법 에서 다음 제안을 시도했습니다. 이 Apache 재 작성 규칙 사용 RewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteCond %{REQUEST_URI} !^/status$ RewriteCond %{REQUEST_URI} !^/version$ RewriteCond %{REQUEST_URI} !^/_hostmanager/ RewriteRule . https://%{SERVER_NAME}%{REQUEST_URI} [L,R] 시도하면 …