, , .
, PHP, , , php5-json php5-mysql ( , ), mysql, , -, 127.0. 0.1 localhost - .
-, , , , 500 .
, , .
Update:
, . , , , . , . gzipping , , .
server {
server_name somedamnserver;
root /var/www;
rewrite_log on;
gzip_static on;
location ~* ^[^\?\&]+\.(html|jpg|jpeg|json|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js|svg|woff|ttf)$ {
try_files $uri /index.php?file=$1;
expires 24h;
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}
location / {
try_files $uri /index.php /50x_static.html;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
user328570