Siehe Suche .httpd.conf.
Aber, wenn du schon die vHosts ansprichst, dort taucht kein AddHandler x-httpd-php5 .html auf sondern
<IfModule mod_php5.c>
php_admin_flag engine off
<FilesMatch "\.ph(p3?|tml)$">
SetHandler None
</FilesMatch>
<FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler None
</FilesMatch>
</IfModule>
<FilesMatch "\.php5?$">
Options +ExecCGI
SetHandler fcgid-script
</FilesMatch>
[...]