Merge pull request #13163 from MrPetovan/bug/13129-force-ssl-reverse-proxy

Add support for reverse proxy to system.force_ssl feature
This commit is contained in:
Tobias Diekershoff 2023-05-24 18:36:17 +02:00 committed by GitHub
commit f98cb3a5df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -581,6 +581,7 @@ class App
// Force SSL redirection
if ($this->config->get('system', 'force_ssl') &&
(empty($server['HTTPS']) || $server['HTTPS'] === 'off') &&
(empty($server['HTTP_X_FORWARDED_PROTO']) || $server['HTTP_X_FORWARDED_PROTO'] === 'http') &&
!empty($server['REQUEST_METHOD']) &&
$server['REQUEST_METHOD'] === 'GET') {
System::externalRedirect($this->baseURL . '/' . $this->args->getQueryString());