I have a tomcat apache installed with ssl on Centos and I have deployed GeoServer as webapp into tomcat…when I access GeoServer through tomcat as https://XXXX.XXXXXXXXX.com/geoserver/web/ and enter the login details page will be redirected to http://localhost:8080/geoserver/j_spring_security_check,it supposed to take me inside GeoServer again with https link
After 3 days ,finally I figured out the issue. You have to do the below steps to make it work :
<context-param>
<param-name>PROXY_BASE_URL</param-name>
<param-value>https://XXXXX.XXXXXXXXXX.XXXX/geoserver</param-value>
</context-param>