22
0
Fork 0

Ajout bypass redirection HTTPS pour le .well-known

This commit is contained in:
bwaegeneire 2023-01-09 17:32:22 +01:00
parent f5426a5bc7
commit 6ab82db910
1 changed files with 1 additions and 0 deletions

View File

@ -1016,6 +1016,7 @@ dans Apache en utilisant la valeur de l'en-tête `X-Forwarded-Proto`
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP:X-Forwarded-Proto} !=https
RewriteCond %{REQUEST_URI} !^/.well-known/
RewriteRule ^ https://%{HTTP:Host}%{REQUEST_URI} [L,R=permanent]
~~~