scale-catalog/jailman/blueprints/organizr/includes/custom/phpblock.conf

9 lines
244 B
Plaintext
Raw Normal View History

fastcgi_read_timeout 240;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}