### Game_Admin
server {
listen 6101;
server_name localhost;
#location / {
root /home/gameAdmin;
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$uri&$args;
#}
location ~ .*\.(php|php5)?$
{
root /home/gameAdmin/;
fastcgi_pass 127.0.0.1:15001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
include fastcgi.conf;
}
location ~.*\.(gif|jpeg|jpg|png|bmp|swf)$ {
expires 24h;
}
location ~.*\.(js|css)?$ {
expires 1h;
}
}
server {
listen 6101;
server_name localhost;
#location / {
root /home/gameAdmin;
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$uri&$args;
#}
location ~ .*\.(php|php5)?$
{
root /home/gameAdmin/;
fastcgi_pass 127.0.0.1:15001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
include fastcgi.conf;
}
location ~.*\.(gif|jpeg|jpg|png|bmp|swf)$ {
expires 24h;
}
location ~.*\.(js|css)?$ {
expires 1h;
}
}