Chrome 87 or later shows warning in login process.
System is configured by Nginx as load balancing with https. I have not written https description in setup of “ilias.ini.php” in ilias server.
Is this to be enabled?
[https]
auto_https_detect_enabled = "1"
auto_https_detect_header_name = "X-Forwarded-Proto"
auto_https_detect_header_value = "https"
If other scripts like .htaccess is necessary, please advise.
ILIAS document descriver as;
Redirect all unencrypted traffic to HTTPS
<VirtualHost *:80>
ServerName yourservername.org
Redirect permanent / https://yourservername.org/
</VirtualHost>
<IfModule mod_headers.c>
Header always set Strict-Transport-Security "max-age=15768000; includeSubDomains; preload"
</IfModule>