[cas-user] Using CAS with Apache or Nginx with SSL

2016-10-17 Thread Alexandre Arcanjo de Queiroz
Can I use CAS with this architecture?: A HTTP server with SSL certificate (like Nginx or Apache) acting as proxy of a CAS deployed in a Web Container (like Jetty) without SSL certificate? The Services (using reverse proxy too) only communicate with CAS through HTTP Server. -- CAS gitter chatr

Re: [cas-user] Using CAS with Apache or Nginx with SSL

2016-10-17 Thread Ray Bon
That is exactly how I have my development environment configured. On one server: nginx with self signed cert and 3 tomcats (two CAS one test application(s)). Ray On 2016-10-17 09:36, Alexandre Arcanjo de Queiroz wrote: > Can I use CAS with this architecture?: A HTTP server with SSL > certificate

Re: [cas-user] Using CAS with Apache or Nginx with SSL

2016-10-17 Thread Brandon Martin
Here's the nginx config I use: server { listen 443 ssl; server_name login.domain.net; location = / { rewrite ^/(.*) https://login.domain.net/login; } location / { add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload"; add_header 'A