Le blog de Victor Héry
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

478 B

email: daumas.frederic@free.fr date: 2014-01-03T20:47+01:00 author: Frederic website:

bon tuto. Concernant ton problème de https pour que cela fonctionne, le reverse proxy doit définir dans le header X-Forwarded-Proto si la requête était en http ou https

Par exemple la régle de récriture apache pour forcer l’https doit être :

RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule / https://%{SERVER_NAME}%{REQUEST_URI} [L,R]

Bye !