If you are using Nginx as reverse proxy and SSL/TLS termination point, make sure you set the corresponding HTTP headers before forwarding the request to ILIAS (most importantly X-Forwarded-Proto). In Ubuntu this is achieved by including the file /etc/nginx/proxy_params in the server definition:
server {
[...]
include /etc/nginx/proxy_params;
}
After that, you can enable HTTPS detection in ILIAS (auto_https_detect_enabled). There is probably no need to enable HTTPS redirection in Apache (if I understand your setup correctly).
server {
[...]
include /etc/nginx/proxy_params;
}
After that, you can enable HTTPS detection in ILIAS (auto_https_detect_enabled). There is probably no need to enable HTTPS redirection in Apache (if I understand your setup correctly).