AllowOverride All Options FollowSymLinks {% if pim_src_ip is defined and pim_src_ip | length > 0 %} Require ip {{ pim_src_ip | join(' ') }} {% else %} Require all granted {% endif %} SetHandler "proxy:unix:/run/php-fpm/{{ pim_php_fpm_pool | default('pim_' + pim_id | string) }}.sock|fcgi://localhost" RewriteEngine On # Handle Authorization Header RewriteCond %{HTTP:Authorization} . RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] # Send Requests To Front Controller... RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [QSA,L] Require all denied RewriteEngine Off