ERROR bad Request-Line - Force ssl - rails

15,934

Solution 1

Answer can be found here: How to use deactivate Webrick's SSL

you can fix it by clearing the browser cookies and it works again. It seems the authentication information is saved in the cookie and keeps reverting our requests to HTTPS but does not authenticate correctly so you get that error.

Solution 2

Maybe you can try:

1) stop rails server 2) rake tmp:clear on the command line

Then start again and see if the problem persists.

UPDATE: Maybe you can try to clean any cache content / history content on your browser too.

Share:
15,934

Related videos on Youtube

Benamir
Author by

Benamir

Updated on September 14, 2022

Comments

  • Benamir
    Benamir about 1 year

    I set force_ssl to true by accident and then when reverting to false and running server I get the following error:

    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?'.
    

    How can I fix this?

    When I hit http url on local host it redirects to https and gives me this error:

    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.
    
  • Benamir
    Benamir about 11 years
    Problem still persists. I added some additional info above that may help.