我在Elastic Beanstalk上部署了一个Python应用程序,使用Nginx作为反向代理服务器,uWSGI作为Python和Nginx之间的接口。 环境已配置为单个实例,因此我没有使用负载均衡器。
我已经拥有SSL证书,但我不知道如何在我的环境中配置它。 我需要安装证书并将所有HTTP流量重定向到HTTPS。
我在网上搜索并在AWS官方文档中找到了一些链接,但所有文档都与Apache Web服务器相关。
你能给我一个帮助或一个很好的参考资料吗?
答案 0 :(得分:0)
以下是使用Nginx在我的AWS Elastic Beanstalk Go环境中将所有HTTP通信重定向到HTTPS的步骤。我相信Python + Nginx应该是相同的。
在下面的目录结构中,在应用程序代码的根目录中创建了一个文件。
.ebextensions/nginx/conf.d/elasticbeanstalk/00_application.conf
文件内容为
location / {
set $redirect 0;
if ($http_x_forwarded_proto != "https") {
set $redirect 1;
}
if ($http_user_agent ~* "ELB-HealthChecker") {
set $redirect 0;
}
if ($redirect = 1) {
return 301 https://$host$request_uri;
}
proxy_pass http://127.0.0.1:5000;
proxy_http_version 1.1;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
对于Apache,您应该签出this link。