> What if we are using the same type of setup but using Tomcat with the > Apache AJP Proxy and not using the standard 8080 and 8443 Toimcat ports? I > have tried to do this and when I connect to SSL it connects fine but since > we are connecting to port 80 on the backend server through the load > balancer CAS keeps saying insecure even though the client's browser is > https. >
I'm a bit confused by the mention of AJP and connecting to the back end on port 80. In any case you need to set secure=true on the Tomcat connector element of the container hosting CAS. The requirement for CAS is that request.isSecure() returns true, which would be satisfied by secure=true. See http://tomcat.apache.org/tomcat-7.0-doc/config/http.html and http://tomcat.apache.org/tomcat-7.0-doc/config/ajp.html for more information. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
