Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
# pass the PHP scripts to FastCGI server
2
#
3
# See conf.d/php-fpm.conf for socket configuration
4
#
5
index index.php index.html index.htm;
6
 
7
location ~ \.php$ {
8
    try_files $uri =404;
9
    fastcgi_intercept_errors on;
10
    fastcgi_index  index.php;
11
    include        fastcgi_params;
12
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
13
    fastcgi_pass   php-fpm;
14
}