server
{
listen 80;
server_name www.o2o.com o2o.com;
index index.html index.htm index.php;
root /home/wwwroot/online_o2o/;
location /phalcon {
alias /home/wwwroot/online_o2o/minicli/public/;
rewrite (.*) /phalcon/index.php?_url=$1&$args last;
location ~ .*?\.php$ {
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_split_path_info ^/phalcon/(.+\.php?)(.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
set $mobile_type "";
if ( $http_user_agent ~* "(iphone|android)" ) {
set $mobile_type $1;
}
fastcgi_param MOBILE_TYPE $mobile_type;
}
}
location ~ \.php {
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
location /nginx_status
{
stub_status on;
access_log off;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js)?$
{
expires 12h;
}
location ~ /\.
{
deny all;
}
}