location / { |
index index.php index.html index.htm; |
try_files $uri $uri / index.php $uri ? $args ; |
} |
|
location ~ ^(.+.php)(.*)$ { |
fastcgi_split_path_info ^(.+.php)(.*)$; |
fastcgi_param SCRIPT_NAME $fastcgi_script_name ; |
fastcgi_param SCRIPT_FILENAME $document_root / $fastcgi_script_name ; |
fastcgi_param PATH_INFO $fastcgi_path_info ; |
|
include fastcgi.conf; |
|
fastcgi_pass 127.0.0.1:9000; |
fastcgi_index index.php; |
} |