Hey there,
I wanted to update my i-doit from
1.12.4 (rev 201911204)
to
1.13 (rev 201911300)
Everytime I start with the update, I get an "Internal Server Error".
This is what I get in my apache error.log:
"[Wed Sep 25 16:01:14.653239 2019] [core:error] [pid 23541] [client xxx.xxx.xxx.xxx:55776] AH00027: No authentication done but request not allowed without authentication for /index.php. Authentication not configured?"
And this is my apache site config:
<VirtualHost *:80>
ServerName localhost
Redirect / https://localhost/
DocumentRoot /var/www/html/idoit/
<Directory /var/www/html/idoit/>
AllowOverride All
Require all granted
</Directory>
LogLevel warn
ErrorLog ${APACHE_LOG_DIR}/idoit_error.log
CustomLog ${APACHE_LOG_DIR}/idoit_access.log combined
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName localhost
DocumentRoot /var/www/html/idoit/
<Directory /var/www/html/idoit/>
AllowOverride All
Require all granted
</Directory>
SSLEngine On
SSLCertificateFile /path/to/certificate/acme.crt
SSLCertificateKeyFile /path/to/certificate/acme.key
SSLCertificateChainFile /path/to/certificate/acme.crt
</VirtualHost>
</IfModule>
What am I doing wrong or missing?
Thanks in advance and kind regards,
-Manuel