ruby-on-rails-3 – 错误请求线 – 强制ssl – rails

前端之家收集整理的这篇文章主要介绍了ruby-on-rails-3 – 错误请求线 – 强制ssl – rails前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我将force_ssl设置为true,然后当返回到false并运行服务器时,会收到以下错误消息:
ERROR bad Request-Line 

WEBrick 1.3.1
INFO  ruby 1.9.3 (2012-02-16) [x86_64-darwin11.4.0]
WEBrick::HTTPServer#start: pid=472 port=3000
ERROR bad Request-Line `\x16\x03\x01\x00?\x01\x00\x00?\x03\x02P?Mf\x00??C?'.

如何解决这个问题?

当我在本地主机上点击http url时,它重定向到https并给我这个错误

SSL connection error
Unable to make a secure connection to the server. This may be a problem with the server,or it may be requiring a client authentication certificate that you don't have.
Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error.

解决方法

答案可以在这里找到: How to use deactivate Webrick’s SSL

您可以通过清除浏览器Cookie来修复它,并再次工作.似乎认证信息保存在cookie中,并将请求恢复为HTTPS,但不会正确验证,以便您收到该错误.

原文链接:https://www.f2er.com/ruby/271470.html

猜你在找的Ruby相关文章