my goal is to change the file type php parses, from .php,.phtml,etc to .html. with previous versions of apache2 i'd just edit mod-php5.conf and set:
<FilesMatch "\.html$">
SetHandler application/x-httpd-php
</FilesMatch>
now on apache2.2.21 that came with debian-testing, it's using input filters...
<FilesMatch "\.html$">
SetInputFilter PHP
SetOutputFilter PHP
</FilesMatch>
i changed the file types to .html as you can see above, stop and restarted the server. And it's still only parsin .php files as php.
what am I missing here? the docs doesn't mention anything special for the FilesMatch tag when using SetInputFilter
update: just noticed it's loading a new php module, libphp5filter.so, obviously to take part on the apache2 filter interface.