将 http 转发到 https - Elastic Beanstalk + Nginx
Posted
技术标签:
【中文标题】将 http 转发到 https - Elastic Beanstalk + Nginx【英文标题】:Forward http to https - Elastic Beanstalk + Nginx 【发布时间】:2017-09-07 12:44:40 【问题描述】:我将 Elastic Beanstalk 与 Node.js 服务器、负载平衡和 nginx 代理一起使用。我希望将所有地址 http://example.com 重新路由到 https://example.com。
我已经尝试了下面的配置,它位于 .ebextensions 中,看起来像这样:
files:
"/etc/nginx/conf.d/000_https_redirect.conf":
mode: "000755"
owner: root
group: root
content: |
server
listen 80;
return 301 https://$host$request_uri;
我的负载均衡器有 80 指向 80 和 443 指向 80:
【问题讨论】:
【参考方案1】:根据您的问题,尚不清楚到底出了什么问题,但也许您可以在重写条件下使用 x-forwarded-proto。
我自己没有尝试过,但可能类似于:how to redirect http to https in nginx docker elastic beanstalk
【讨论】:
以上是关于将 http 转发到 https - Elastic Beanstalk + Nginx的主要内容,如果未能解决你的问题,请参考以下文章
节点 http-proxy:将流量转发到外部 https 站点 - 崩溃