229 | | location / { |
230 | | try_files $uri $uri/ /index.php?$query_string; |
231 | | } |
232 | | |
233 | | location ~ \.php($|/) { |
234 | | fastcgi_split_path_info ^(.+?\.php)(/.*)$; |
235 | | fastcgi_pass unix:/var/run/php5-fpm.sock; |
236 | | fastcgi_index index.php; |
237 | | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
238 | | fastcgi_param PATH_INFO $fastcgi_path_info; |
239 | | include fastcgi_params; |
240 | | } |
| 229 | location / { |
| 230 | try_files $uri $uri/ /index.php?$query_string; |
| 231 | } |
| 232 | |
| 233 | location ~ \.php($|/) { |
| 234 | fastcgi_split_path_info ^(.+?\.php)(/.*)$; |
| 235 | fastcgi_pass unix:/var/run/php5-fpm.sock; |
| 236 | fastcgi_index index.php; |
| 237 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
| 238 | fastcgi_param PATH_INFO $fastcgi_path_info; |
| 239 | include fastcgi_params; |
| 240 | } |