微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

nginx: [emerg] "server" 指令在这里不允许

如何解决nginx: [emerg] "server" 指令在这里不允许

那不是Nginx配置文件。它是配置文件一部分。Nginx

Nginx配置文件(通常称为)将Nginx.conf如下所示:

events {
    ...
}
http {
    ...
    server {
        ...
    }
}

server块被封闭在一个http块内。

通常,配置分布在多个文件中,通过使用include指令来拉入额外的片段(例如从sites-enabled目录中)。

用于测试完整的配置文件,该文件从使用指令sudo Nginx -t开始Nginx.conf并拉入额外的片段。include有关更多信息,请参阅此文档

解决方法

我已经重新配置了 nginx,但我无法使用以下配置重新启动它:

配置:

server {
   listen 80;
   server_name www.example.com;
   return 301 $scheme://example.com$request_uri;
}


server {
   listen 80;
   server_name example.com;

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

   location /robots.txt {
       alias /path/to/robots.txt;
       access_log off;
       log_not_found off;
   }

   location = /favicon.ico { access_log off; log_not_found off; }

   location / {
      proxy_pass_header Server;
      proxy_set_header Host $http_host;
      proxy_redirect off;
          proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Scheme $scheme;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_connect_timeout 30;
      proxy_read_timeout 30;
      proxy_pass http://127.0.0.1:8000;
   }

   location /static {
      expires 1M;
      alias  /path/to/staticfiles;
   }
}

运行sudo nginx -c conf -t测试配置后返回以下错误我无法弄清楚真正的问题是什么

nginx: [emerg] "server" directive is not allowed here in    /etc/nginx/sites-available/config:1
nginx: configuration file /etc/nginx/sites-available/config test failed

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。