gpt4 book ai didi

cloud - 是否可以在 Heroku 上设置 VPN?

转载 作者:行者123 更新时间:2023-12-04 02:25:39 25 4
gpt4 key购买 nike

是否可以在 heroku 上使用 openVPN 设置 VPN 以保持临时环境的私密性?如果是这样,有人有文章或链接吗?

最佳答案

您无法使用 VPN 执行此操作,但您可以使用密码保护站点的临时实例。为此,您需要设置一个名为“staging”的新 Rails 环境,并在 ApplicationController 中包含如下内容:

class ApplicationController

before_filter :password_protected if Rails.env.staging?

protected

def password_protected
authenticate_or_request_with_http_basic do |username, password|
username == "foo" && password == "bar"
end
end

end

然后,您需要确保暂存实例的环境:
heroku config:add RACK_ENV=staging

关于cloud - 是否可以在 Heroku 上设置 VPN?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1726491/

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