全球主机交流论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

CeraNetworks网络延迟测速工具IP归属甄别会员请立即修改密码
楼主: niaochen

安装了论坛的那个NGINX 一键安装包,怎么添加网站?

[复制链接]
发表于 2009-8-30 10:13:38 | 显示全部楼层

回复 30# 的帖子

vi nginx.conf
发表于 2009-9-12 14:27:33 | 显示全部楼层
我这个我怎么添加进去不行呢,郁闷
发表于 2009-9-12 14:28:34 | 显示全部楼层

回复 32# 的帖子

具体表象?
发表于 2009-9-12 14:35:28 | 显示全部楼层
[emerg]: unknown directive "server" in /usr/local/nginx/conf/nginx.conf:107
configuration file /usr/local/nginx/conf/nginx.conf test failed

我的目前是这样
______________________________
worker_processes 2;

error_log  /home/logs/nginx_error.log  crit;

pid        /usr/local/nginx/logs/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;

events
        {
                use epoll;
                worker_connections 51200;
        }

http
        {
                include       mime.types;
                default_type  application/octet-stream;

                #charse  gb2312;

                server_names_hash_bucket_size 128;
                client_header_buffer_size 32k;
                large_client_header_buffers 4 32k;
                client_max_body_size 20m;

                sendfile on;
                tcp_nopush     on;

                keepalive_timeout 60;

                tcp_nodelay on;

                fastcgi_connect_timeout 300;
                fastcgi_send_timeout 300;
                fastcgi_read_timeout 300;
                fastcgi_buffer_size 64k;
                fastcgi_buffers 4 64k;
                fastcgi_busy_buffers_size 128k;
                fastcgi_temp_file_write_size 128k;

                gzip on;
                gzip_min_length  1k;
                gzip_buffers     4 16k;
                gzip_http_version 1.0;
                gzip_comp_level 2;
                gzip_types       text/plain application/x-javascript text/css application/xml;
                gzip_vary on;

                #limit_zone  crawler  $binary_remote_addr  10m;

server
        {
                listen       80;
                server_name www.22222222.CN;
                index index.html index.htm index.php;
                root  /home/www/;

                #limit_conn   crawler  20;

                #location /status {
                #stub_status        on;
                #access_log        off;
                #}

                                                if (!-e $request_filename) {
                                                rewrite ^(.*)$ /index.php?q=$1 last;
                                }

        location ~ .*\.(php|php5)?$
                        {
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                #fastcgi_pass  127.0.0.1:9000;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

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

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

                log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
                access_log  /home/logs/access.log  access;
        }

server
        {
                listen  80;
                server_name  status.2222222222222.cn;

                location / {
                        stub_status on;
                        access_log   off;
                }
        }
}
server
        {
                listen       80;
                server_name www.AAAAAAAAAAAAA1.cn;
                index index.html index.htm index.php;
                root  /home/SSSSS;

                #limit_conn   crawler  20;

                #location /status {
                #stub_status        on;
                #access_log        off;
                #}

                location ~ .*\.(php|php5)?$
                        {
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                #fastcgi_pass  127.0.0.1:9000;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

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

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

                log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
                access_log  /home/logs/xaaccess.log  access;
        }

server
        {
                listen  80;
                server_name  status.AAAAAAAAAA1.cn;

                location / {
                        stub_status on;
                        access_log   off;
                }
        }
}
发表于 2009-9-12 14:36:29 | 显示全部楼层
最后一段相同的是需要添加的,但是测试一直报错,根据那个LAMP的添加虚拟主机的办法,也一直报错,不知道哪里问题
发表于 2009-9-12 14:37:41 | 显示全部楼层

回复 34# 的帖子

[emerg]: unknown directive "server" in /usr/local/nginx/conf/nginx.conf:107 107行错误。

vim nginx.conf  看下107行什么错误。
发表于 2009-9-12 14:48:55 | 显示全部楼层
{
一个括号
其他没了
下面这个红色的

server
        {
                listen       80;
                server_name www.22222222.CN;
                index index.html index.htm index.php;
                root  /home/www/;

                #limit_conn   crawler  20;

                #location /status {
                #stub_status        on;
                #access_log        off;
                #}
发表于 2009-9-12 15:19:43 | 显示全部楼层
第一个server段  log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '

第二个server段  log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '

红体的重复了,得改成不一样的。
发表于 2009-9-12 15:21:20 | 显示全部楼层
原来是一个括号吧人害惨了,问题解决了,谢谢老大
发表于 2009-9-12 15:22:58 | 显示全部楼层

回复 39# 的帖子

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|全球主机交流论坛

GMT+8, 2025-1-31 12:58 , Processed in 0.065087 second(s), 6 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表