Grails SSL TOMCAT

Posted by user974459 on Server Fault See other posts from Server Fault or by user974459
Published on 2011-11-11T17:04:37Z Indexed on 2011/11/12 9:56 UTC
Read the original article Hit count: 178

Filed under:
|

I'm implementing grails with SSL and deployed to tomcat 7.0. I have used spring security plugin for SSL. In tomcat, I added

<Connector port="80" protocol="HTTP/1.1" 
           connectionTimeout="200000000" 
           redirectPort="443" />

<Connector port="8443" protocol="HTTP/1.1" 
           connectionTimeout="200000000" 
           redirectPort="443" />

<Connector port="443" 
maxThreads="200" scheme="https" secure="true" 
SSLEnabled="true" keystoreFile="${user.home}/.keystore" keystorePass="123456" clientAuth="false" sslProtocol="TLS"/> 

if I type https://localhost is ok. But my app doesn't work.

© Server Fault or respective owner

Related posts about tomcat

Related posts about ssl