hxy5156 发表于 2012-5-19 10:28:37

军哥,帮个忙!VPS上建两个站点!

1、vhost文件夹中已分别建立了1.com.conf,2.com.conf
2、配置nginx.conf, 中的server


server
        {
               
                                          isten                   80;
                server_name www.1.com;
                index index.html index.htm index.php;
                root/home/wwwroot/1.com;            
                           

                location ~ .*.(php|php5)?$
                        {
                                fastcgi_passunix:/tmp/php-cgi.sock;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

                location /status {
                        stub_status on;
                        access_log   off;
                }

                location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                                expires      30d;
                        }

                location ~ .*.(js|css)?$
                        {
                                expires      12h;
                        }

                log_formataccess'$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
                access_log/home/wwwlogs/access.logaccess;         
        }


server
        {
               
                                       listen                80;
                server_namewww.2.com;
                index index.html index.htm index.php;
                root/home/wwwroot/2.com;            
                           

                location ~ .*.(php|php5)?$
                        {
                                fastcgi_passunix:/tmp/php-cgi.sock;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

                location /status {
                        stub_status on;
                        access_log   off;
                }

                location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                                expires      30d;
                        }

                location ~ .*.(js|css)?$
                        {
                                expires      12h;
                        }

                log_formataccess'$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
                access_log/home/wwwlogs/access.logaccess;         
        }

include vhost/*.conf;
}

重启LNMP,还是不行!!!!怎么搞得到呢。请军哥指教!!!!谢了!!!!!!

id886 发表于 2012-5-21 13:21:49

直接 /root/vhost.sh添加域名不就得了。。还用得着去编辑nginx.conf 搞出问题来
页: [1]
查看完整版本: 军哥,帮个忙!VPS上建两个站点!