nginx 配置 php 的 CI 框架的web

来源:互联网 发布:华为数据库开发工程师 编辑:程序博客网 时间:2024/06/06 01:24
### 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;
        }
   }
0 0
原创粉丝点击