从http重定向到https(Pencilblue Elastic Beanstalk)

问题描述 投票:1回答:1

我们正试图将所有命中从http重定向到https。目前该应用程序部署在弹性beanstalk上,它允许http和https,但我们只想要https

我已经尝试在config.js中添加服务器对象来进行检查

pb.config.server.ssl.use_x_forwarded && req.headers["x-forwarded-proto"] !== "https"

pencilblue.js工作,但它破坏了localhost和live的代码。

你能否建议一种方法将所有http点击重定向到https

非常感谢。

javascript http https http-redirect pencilblue
1个回答
2
投票

我已经解决了这个问题并得到了解决方案,你可以在use_x_forwarded文件中将config.js设置为true。

© www.soinside.com 2019 - 2024. All rights reserved.