gpt4 book ai didi

nginx 错误 :"location"指令在/etc/nginx/nginx.conf :76 中是不允许的

转载 作者:行者123 更新时间:2023-12-03 11:51:39 26 4
gpt4 key购买 nike

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

我面临这个错误,

重新启动 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;
# }
#}

这有什么问题?

最佳答案

“位置”指令应该在“服务器”指令内,例如

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;
}
}

关于nginx 错误 :"location"指令在/etc/nginx/nginx.conf :76 中是不允许的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20392741/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com