-rwxr-xr-x 1 user user 106 Jun 29 2012 robots.txt
-rw-rw-r-- 1 user user 23 Apr 13 02:18 test.php
txt тоже не грузиться такие же кренделя а вот php нормально
это я сразу конфиг даю так как туда думаю может быть проблема заведет
Цитата:
upstream php-fpm{
server unix:/var/run/php5-fpm.sock;
}
server{
listen 80;
root /home/user/gogo.com/www;
index index.php index.html index.htm;
server_name gogo.com www.gogo.com;
location "/" {
index index.php index.html index.htm;
try_files $uri $uri/ =404;
fastcgi_pass php-fpm;
include fastcgi_params;
#include mime.types;
#default_type application/octet-stream;
fastcgi_split_path_info ^(.+?\.php)(/.*)?$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
set $path_info $fastcgi_path_info;
fastcgi_param PATH_INFO $path_info;
fastcgi_param SERVER_ADMIN admin@example.com;
fastcgi_param SERVER_SIGNATURE nginx/$nginx_version;
fastcgi_index index.php;
}
|