Chỉ thị máy chủ nginx không được phép ở đây


44

Tôi biết có những bản sao này ngoài kia, nhưng dường như tôi không thể giải quyết điều này trong tình huống của mình.

Tôi đang theo dõi một bài viết về việc thiết lập nginx làm proxy ngược với apache.

Và tôi nhận được lỗi này:

nginx: [emerg] "server" directive is not allowed here in 
       /etc/nginx/v.hosts/mydomain.com.conf:3
nginx: configuration file /etc/nginx/nginx.conf test failed

Tôi /etc/nginx/nginx.conftrông như thế này:

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream; 
    access_log  /var/log/nginx/access.log  main;  
    charset   utf-8;
    keepalive_timeout  65;
    server_tokens       off;
    tcp_nopush          on;
    tcp_nodelay         off;

    server {
          listen 80;
          server_name  _;          
          root   /usr/share/nginx/html;
          index  index.html index.htm;     
       }
    }
include  v.hosts/*.conf;

Và cái này tôi có /etc/nginx/v.hosts/mydomain.com.confvẻ như thế này:

server {
      listen 80;
      server_name  mydomain.com;

       access_log  off;
       error_log off;

      location / {
        proxy_pass http://127.0.0.1:81;
        proxy_set_header        X-Real-IP       $remote_addr;
        proxy_set_header        Host            $host;
        proxy_redirect          off;
        proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_connect_timeout 90;
        proxy_send_timeout 90;
        proxy_read_timeout 90;
        client_max_body_size 10m;
        client_body_buffer_size 128k;
        proxy_buffer_size 4k;
        proxy_buffers 4 32k;
        proxy_busy_buffers_size 64k;
      }
 }

Manh mối và sự giúp đỡ sẽ được đánh giá tốt :)


Đã xóa tất cả các liên kết, vì họ đã chết bây giờ.
Sven

Câu trả lời:


39

Vấn đề là ở đây:

    }
include  v.hosts/*.conf;

Bạn đã đóng httpkhối trước lệnh include, do đó kết thúc cấu hình. Đây là lý do tại sao không có tập tin bao gồm làm việc.

Để khắc phục sự cố, includecác tệp trong httpkhối:

    include  v.hosts/*.conf;
}
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.