我为Rails4应用程序使用托管服务(不是heroku)。
我可以搭载托管服务的SSL证书,以获取在Heroku等托管服务域上运行的应用程序。
使用自定义域名后,浏览器会显示警告消息,例如www.example.com。
当我输入www.example.com时,重定向到 https ://www.example.com(SSL)。
请告知我如何使用 http ://www.example.com而不是 https ://www.example.com(SSL)。
到目前为止,我还不想为我的域名购买和配置SSL证书。
我在production.rb中注释掉了config.force_ssl = true
。
设置\ production.rb
SampleApp::Application.configure do
#config.force_ssl = true
config.serve_static_assets = true
end
答案 0 :(得分:1)
尝试使用'false'而不是注释:
config.force_ssl = false