这是我的nginx配置文件。
在default.conf上,第一个位置用于访问/ usr / share / nginx / html目录,当我访问http://47.91.152.99时可以。 但是当我为目录/ usr / share / nginx / public目录添加一个新位置时,当我访问http://47.91.152.99/test时,nginx会返回404页面。
那么,怎么回事?我是否滥用了nginx的指令?
/etc/nginx/nginx.conf
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
/etc/nginx/conf.d/default.conf
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location ^~ /test/ {
root /usr/share/nginx/public;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
答案 0 :(得分:13)
以下错误的阻止(在您的情况下);
location ^~ /test/ {
root /usr/share/nginx/public;
index index.html index.htm;
}
告诉nginx在文件夹(root)/ usr / share / nginx / public中查找目录'test'。如果该根目录中没有“test”文件夹,它将返回404.为了解决您的问题,我建议您尝试使用别名而不是 root 。像这样:
location ^~ /test/ {
alias /usr/share/nginx/public;
index index.html index.htm;
}
另外,只是为了踢,一般可以设置索引指令,所以你不必一直重写它......就像这样;
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html index.htm;
error_page 500 502 503 504 /50x.html;
location / { }
location ~^/test/ {
alias /usr/share/nginx/public;
}
location = /50x.html {
root /usr/share/nginx/html;
}
}
你还应该考虑一件事......位置块越“精确”,它应该存在的配置越高。就像location = /50x.html
一样。在一个完美的世界中,这将在通用服务器块设置之后立即设置。
希望它有所帮助。
答案 1 :(得分:3)
location ^~ /test/ {
root /usr/share/nginx/public;
index index.html index.htm;
}
location ^~ /test/ {
alias /usr/share/nginx/public;
index index.html index.htm;
}
额外提示:可以设置index指令,这样您就不必重写它。
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html index.htm;
error_page 500 502 503 504 /50x.html;
location / { }
location ~^/test/ {
alias /usr/share/nginx/public;
}
location = /50x.html {
root /usr/share/nginx/html;
}
}
nginx部分地根据配置中的位置来匹配Location块。理想情况下,您应该反转现在的状态。 Nginx配置中的位置块会更高。为此,location = /50x.html也将向上移动。订单是
有关nginx location priority的更多信息。另外,您随时可以查看官方文档。位置块http://nginx.org/en/docs/http/ngx_http_core_module.html#location
的Nginx文档答案 2 :(得分:1)
当您的应用是vuejs时,您需要这样编写,可以防止404,请注意加倍/ test /
location ^~/test/ {
alias /usr/local/soft/vuejs/;
try_files $uri $uri/ /test/index.html;
}
答案 3 :(得分:0)
就我而言,如果您要托管多个站点,请检查server_name
可能指向错误。看看吧。