Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I recently installed Thin on our server. Now my customer asked me to implemet SSL on my whole application. So i've searched the web for a guide to implement SSL. I've found this, which seems to be very easy. I got my certificate and the key and i started up the server as shown. The Server starts up without any problems, but when somebody tries to connect i get this error message:

terminate called after throwing an instance of 'std::runtime_error' what(): Encryption not available on this event-machine Aborted

The Server stops and the browser shows a "Connection reset" Page. I looked around and some people say that this has something to do with the libssl not being installed, so i looked inside the /usr - Folder and there she is.

Then i searched for other Solutions, but most of them seem to require Apache or Nginx, which is not an Option, sadly.

Any Ideas how to get Thin to work with SSL?

More Info to the System:

VHost Debian 6 x64 Rails 3.2.8 Ruby 1.8.7 Thin 1.4.1

share|improve this question
Which command are you using to start thin? – alfonso Aug 22 '12 at 15:02
Im using thin start -p 2048 --ssl --ssl-key-file ./my_key.key --ssl-cert-file ./my_cert.crt – ProblemChild Aug 23 '12 at 7:20

1 Answer

up vote 0 down vote accepted

Okay i fixed this issue by just doing an update. I begged our admin to install RVM and finally he allowed me to do so, but the problem:

I've noticed some things by reading the patch notes of Ruby since 1.8.7. It seemed that Ruby had some issues with SSL that were fixed with Ruby 1.9.x. Now i am running Ruby 1.9.3 with Rails 3.2.8 and everything works fine!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.