nginx错误:/etc/nginx/nginx.conf:76中不允许使用"location"指令

 瑶2012瑶_881 发布于 2023-02-12 18:22

当我重新启动nginx时,sudo service nginx restart,

我遇到这个错误,

重新启动nginx:nginx:[emerg]"location"指令在/etc/nginx/nginx.conf:76中不允许nginx:配置文件/etc/nginx/nginx.conf测试失败

这是我的nginx.conf文件:

user www-data;
worker_processes 4;
pid /var/run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {


    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # Logging Settings
    ##

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

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # nginx-naxsi config
    ##
    # Uncomment it if you installed nginx-naxsi
    ##

    #include /etc/nginx/naxsi_core.rules;

    ##
    # nginx-passenger config
    ##
    # Uncomment it if you installed nginx-passenger
    ##

    #passenger_root /usr;
    #passenger_ruby /usr/bin/ruby;

    ##
    # Virtual Host Configs
    ##

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


        location / {
        /home/techcee/scrapbook/local/lib/python2.7/site-packages/django/__init__.pyc/
       }
}


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

这有什么问题?

3 个回答
  • 服务器指令必须是在HTTP指令.它不应该在它之外.

    柜面,如果你需要的详细信息,请参阅本.

    2023-02-12 18:23 回答
  • "location"指令应该在'server'指令中,例如

    server {
        listen       8765;
    
        location / {
            resolver 8.8.8.8;
            proxy_pass http://$http_host$uri$is_args$args;
        }
    
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
    

    2023-02-12 18:23 回答
  • 由于您的服务器已包含该sites-enabled文件夹(注意该include /etc/nginx/sites-enabled/*),因此您最好使用它.

      在里面创建一个文件/etc/nginx/sites-availabledjango随意调用它,我会称它为djanog服务器

      sudo touch /etc/nginx/sites-available/django
      

      然后创建一个指向它的符号链接

      sudo ln -s /etc/nginx/sites-available/django /etc/nginx/sites-enabled
      

      然后编辑与你使用任何文件编辑器,文件,vimnano或任何与创造它里面的服务器

      server {
          # hostname or ip or multiple separated by spaces
          server_name localhost example.com 192.168.1.1; #change to your setting
          location / {
              root /home/techcee/scrapbook/local/lib/python2.7/site-packages/django/__init__.pyc/;
          }
      }
      

      重新启动或重新加载nginx设置

      sudo service nginx reload
      

    注意我相信你的配置可能还不行,因为你需要将它传递给fastcgi服务器或其他什么,但至少这是你可以创建一个有效的服务器

    2023-02-12 18:25 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有