我们正试图将所有命中从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
?
非常感谢。
我已经解决了这个问题并得到了解决方案,你可以在use_x_forwarded
文件中将config.js
设置为true。