nginx多站點配置vhost設置

進入nginx的vhost目錄新建www.zctonline.cn.conf,然後vim打開配置如下

server {
                listen       80;
                server_name www.zctonline.cn;
                charset utf-8;
                root /usr/local/nginx/html/yufan;
                index  index.html index.htm index.php;

                error_log logs/xxx.log;
                location / {
                   if (!-e $request_filename) {
                        rewrite  ^(.*)$  /index.php?s=/$1  last;
                         break;
                   }     
                 }
                error_page   500 502 503 504  /50x.html;
                location = /50x.html {
                        root   html;
                }

                location ~ [^/]\.php(/|$) {
                   fastcgi_pass   unix:/tmp/php-cgi.sock;
                   fastcgi_index index.php;
                   include fastcgi_params;
                   set $real_script_name $fastcgi_script_name;
                   if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
                           set $real_script_name $1;
                           set $path_info $2;
                   }
                   fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
                   fastcgi_param SCRIPT_NAME $real_script_name;
                   fastcgi_param PATH_INFO $path_info;
                }
                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
                        expires 30d;
                        access_log off;
                }
                location ~ .*\.(js|css)?$ {
                        expires 7d;
                        access_log off;
           }
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章