I have a Rails app that is configured to only use SSL. I also have free SSL certificates from StartSSL.
I use thin as my web server with this command:
thin start -p 80 & thin start -p 443 --ssl --ssl-key-file ./.ssl/sslkey.key --ssl-cert-file ./.ssl/sslcert.cert &
This technically works-- visiting the http version of my site redirects to the https version. However, Chrome and Safari both prompt me when I visit the site to "Select a Certificate" from my local Keychain to validate with the server.
This behavior is not desirable. How do I set up thin with SSL in such a way that this dialog does not appear?