banner

[Rule] Rules  [Home] Main Forum  [Portal] Portal  
[Members] Member Listing  [Statistics] Statistics  [Search] Search  [Reading Room] Reading Room 
[Register] Register  
[Login] Loginhttp  | https  ]
 
Forum Index Thảo luận hệ điều hành *nix Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx  XML
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 01/08/2012 09:19:58 (+0700) | #1 | 267801
[Avatar]
ngtrongtri
Member

[Minus]    0    [Plus]
Joined: 27/03/2012 22:54:13
Messages: 114
Offline
[Profile] [PM]
Chào mọi người, hiện mình đang cấu hình nginx để chạy tomcat. Hôm qua mình có tạo 1 virtual host rồi, chạy bình thường. Nhưng hôm nay không hiểu mình chỉnh sai cái gì mà bây giờ mình không start nginx lên được. Lỗi như sau:
Code:
Reloading nginx configuration: [emerg]: "listen" directive is not allowed here in /etc/nginx/sites-enabled/nginx.local:10
configuration file /etc/nginx/nginx.conf test failed


File nginx.local của mình như sau:

Code:
...
server {
        listen   80 default;
        server_name  localhost;
        access_log  /var/log/nginx/localhost.access.log;
        location / {
        proxy_pass http://localhost:8080;
        }
}
...

Mong mọi người giúp đỡ smilie
[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 01/08/2012 15:27:10 (+0700) | #2 | 267824
[Avatar]
quanta
Moderator

Joined: 28/07/2006 14:44:21
Messages: 7265
Location: $ locate `whoami`
Offline
[Profile] [PM]
Bạn có chắc dòng `listen` kia là dòng 10 không: `cat -n /etc/nginx/sites-enabled/nginx.local`?
Let's build on a great foundation!
[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 02/08/2012 09:48:53 (+0700) | #3 | 267874
[Avatar]
ngtrongtri
Member

[Minus]    0    [Plus]
Joined: 27/03/2012 22:54:13
Messages: 114
Offline
[Profile] [PM]
Đúng anh, nó ở dòng 10
[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 02/08/2012 09:52:24 (+0700) | #4 | 267876
shuichi_akai
Elite Member

[Minus]    0    [Plus]
Joined: 12/10/2003 10:40:06
Messages: 161
Location: /home
Offline
[Profile] [PM]
Thử bỏ từ "default" đi xem, listen mỗi một port 80 thì cần gì phải thêm vô.
[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 02/08/2012 09:54:36 (+0700) | #5 | 267877
[Avatar]
ngtrongtri
Member

[Minus]    0    [Plus]
Joined: 27/03/2012 22:54:13
Messages: 114
Offline
[Profile] [PM]

shuichi_akai wrote:
Thử bỏ từ "default" đi xem, listen mỗi một port 80 thì cần gì phải thêm vô. 

Mình cũng thử bỏ rồi, nhưng vẫn lỗi.
[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 02/08/2012 10:00:45 (+0700) | #6 | 267882
shuichi_akai
Elite Member

[Minus]    0    [Plus]
Joined: 12/10/2003 10:40:06
Messages: 161
Location: /home
Offline
[Profile] [PM]
nginx được build như thế nào? Bạn quăng thử file config đầy đủ lên xem sao, chứ cấu hình server như vậy không có lý gì mà báo lỗi cả.
[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 02/08/2012 10:12:06 (+0700) | #7 | 267886
[Avatar]
ngtrongtri
Member

[Minus]    0    [Plus]
Joined: 27/03/2012 22:54:13
Messages: 114
Offline
[Profile] [PM]
File nginx.local
Code:
# You may add here your
# server {
#       ...
# }
# statements for each of your virtual hosts

#server {
        listen   80;


        server_name  localhost;

        access_log  /var/log/nginx/localhost.access.log;

        location / {
        proxy_pass http://localhost:8080;
        }

}


# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
#listen   8000;
#listen   somename:8080;
#server_name  somename  alias  another.alias;

#location / {
#root   html;
#index  index.html index.htm;
#}
#}


# HTTPS server
#
#server {
#listen   443;
#server_name  localhost;

#ssl  on;
#ssl_certificate  cert.pem;
#ssl_certificate_key  cert.key;

#ssl_session_timeout  5m;

#ssl_protocols  SSLv2 SSLv3 TLSv1;
#ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
#ssl_prefer_server_ciphers   on;

#location / {
#root   html;
#index  index.html index.htm;
#}
#}


File ngin.conf

Code:
user www-data;
worker_processes  1;

error_log  /var/log/nginx/error.log;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
    # multi_accept on;
}

http {
    include       /etc/nginx/mime.types;

    access_log  /var/log/nginx/access.log;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;
    tcp_nodelay        on;

    gzip  on;
    gzip_disable "MSIE [1-6]\.(?!.*SV1)";

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

# mail {
#     # See sample authentication script at:
#     # http://wiki.nginx.org/NginxImapAuthenticateWithApachePhpScript
#
#     # auth_http localhost/auth.php;
#     # pop3_capabilities "TOP" "USER";
#     # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
#     server {
#         listen     localhost:110;
#         protocol   pop3;
#         proxy      on;
#     }
#
#     server {
#         listen     localhost:143;
#         protocol   imap;
#         proxy      on;
#     }
# }



[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 02/08/2012 10:14:07 (+0700) | #8 | 267887
[Avatar]
ngtrongtri
Member

[Minus]    0    [Plus]
Joined: 27/03/2012 22:54:13
Messages: 114
Offline
[Profile] [PM]
Mình không có build, mình cài trực tiếp bằng lệnh apt-get install nginx.
Mình thậm chi đã xoá file virtual host nginx.local và create lại nhưng cũng vẫn lỗi. Mặc dù cấu hình hoàn toàn ko khác gì lúc nó chạy bình thường.
[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 02/08/2012 10:18:44 (+0700) | #9 | 267888
shuichi_akai
Elite Member

[Minus]    0    [Plus]
Joined: 12/10/2003 10:40:06
Messages: 161
Location: /home
Offline
[Profile] [PM]
Code:
#server {
        listen   80;

<snip>

}


Lỗi cũng đúng thôi.
[Up] [Print Copy]
  [Question]   Lỗi "is not allowed" khi cấu hình virtual hosts trên nginx 02/08/2012 10:27:46 (+0700) | #10 | 267890
[Avatar]
ngtrongtri
Member

[Minus]    0    [Plus]
Joined: 27/03/2012 22:54:13
Messages: 114
Offline
[Profile] [PM]
Sặc, sao file cấu hình mình post đầu tiên ko có mà vẫn lỗi nhỉ ?
Nói chung là chừ hết lỗi rồi, cảm ơn bạn akai nhiều smilie
[Up] [Print Copy]
[digg] [delicious] [google] [yahoo] [technorati] [reddit] [stumbleupon]
Go to: 
 Users currently in here 
1 Anonymous

Powered by JForum - Extended by HVAOnline
 hvaonline.net  |  hvaforum.net  |  hvazone.net  |  hvanews.net  |  vnhacker.org
1999 - 2013 © v2012|0504|218|