gpt4 book ai didi

ssl - 如何使用 Staticfile Buildpack (FORCE_HTTPS) 在 Swisscom cloud foundry 上强制使用 https

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

我按照 documentation 中的建议配置了 env 选项 FORCE_HTTPS = true :

我的 list .yml

env:
APP_ENV: production
FORCE_HTTPS: true

但是,当我使用 http 打开网站时,我没有被重定向到 https。

我使用自定义的 nginx.conf 文件

设置已应用

最佳答案

我将以下行添加到我的自定义“/nginx.conf”文件中。

    location / {
<% if ENV["FORCE_HTTPS"] %>
if ($http_x_forwarded_proto != "https") {
return 301 https://$host$request_uri;
}
<% end %>
...
}

关于ssl - 如何使用 Staticfile Buildpack (FORCE_HTTPS) 在 Swisscom cloud foundry 上强制使用 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42944486/

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