Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ERROR bad Request-Line - Force ssl - rails

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.
like image 421
Benamir Avatar asked Oct 29 '12 21:10

Benamir


2 Answers

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.

like image 128
Benamir Avatar answered Sep 22 '22 05:09

Benamir


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.

like image 22
p.matsinopoulos Avatar answered Sep 21 '22 05:09

p.matsinopoulos