gpt4 book ai didi

node.js - 将 http 转发到 https - Elastic Beanstalk + Nginx

转载 作者:太空宇宙 更新时间:2023-11-03 13:34:48 25 4
gpt4 key购买 nike

我将 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: enter image description here

最佳答案

从你的问题中不清楚到底出了什么问题,但也许你可以在重写条件下使用 x-forwarded-proto。

我自己还没有尝试过,但可能是这样的:how to redirect http to https in nginx docker elastic beanstalk

关于node.js - 将 http 转发到 https - Elastic Beanstalk + Nginx,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43357622/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com