I need to modify in the htaccess the memory_limit, max_input_vars and max_execution_time of php. In order not to modify the global configuration of php on the server.
In my virtualhost, I have this configuration:
<FilesMatch \.php>
SetHandler "proxy:unix:/var/run/php/php7.3-fpm.sock|fcgi://localhost/"
</FilesMatch>
In my htaccess I have tested these two configs without success:
<IfModule php7_module>
php_value memory_limit 512M
php_value max_input_vars 10000
php_value max_execution_time 1800
</IfModule>
And
<IfModule mod_php7.c>
php_value memory_limit 512M
php_value max_input_vars 10000
php_value max_execution_time 1800
</IfModule>
In the case of php7.3-fpm.sock
, do I have to use it another way?
Thanks