I have a Rails 3 app using Ruby 1.9.2 configured to work on the Linux server. The uses SSL to access all there resources. Now, I am dealing with the SSL so that I can display the application on the client side. The user LDAP credentials are being passed to the Linux server through instructions in the httpd.conf file. I can see the handshake in the SSL_error logs. I also know the cert information is being passed because I can see the information in the SSL_client logs and also in the Rails WEBrick server console as my application boots (http://www.nearinfinity.com/blogs/chris_rohr/configuring_webrick_to_use_ssl.html). However when I go to the Https port on my desktop I get the browser error "503 Service Temporarily Unavailable". I know the cert was passed to the browser because I get the "lock" icon. Can someone help me understand the 503 error? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
If I recall correctly, webrick doesn''t support SSL. Mongrel neither. You''ll have to use Apache or Nginx for that. Yes, SSL dev for Rails is a bit painful. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.