sollte das nicht einen http 500 Code geben?
Kommt drauf an, ob Henry alles gezeigt und/oder den Neustart gemacht hat.
Wenn das
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
tatsächlich ein:
<IfModule mod_cgid.c>
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
</IfModule>
ist, dann nicht. Aber wie schon geschrieben, ohne Neustart sind das alles nur „tote“ Texte.
Hier mal meine
<VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www/html
<Directory "/var/www/html">
AllowOverride All
<IfModule mod_cgid.c>
AddHandler cgi-script .cgi
Options +Indexes +ExecCGI
</IfModule>
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>