Grails SSL TOMCAT
- by user974459
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.