My vhost looks like this:
<Directory "/var/www">
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Require all granted
<FilesMatch "\.php$">
Require all granted
SetHandler proxy:fcgi://127.0.0.1:9000
</FilesMatch>
</Directory>
I'm trying to add php_value lines to my .htaccess file. As soon as I do, I get 500 errors, and this in my Apache's errors log:
/var/www/.htaccess: Invalid command 'php_value', perhaps misspelled or defined by a module not included in the server configuration
So, the question: Is there any way to override php.ini settings via .htaccess, when using PHP-FPM?
tia.