这是我的 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;
}
}
以下错误块(在您的情况下);
location ^~ /test/ {
root /usr/share/nginx/public;
index index.html index.htm;
}
告诉 nginx 在文件夹(root)/usr/share/nginx/public 中查找目录“test”。如果该根目录中没有“test”文件夹,它将返回 404。为了解决您的问题,我建议您尝试使用 alias 而不是 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
。在完美的世界中,这将设置在顶部,就在一般服务器块设置之后。
希望有帮助。
location ^~ /test/ {
root /usr/share/nginx/public;
index index.html index.htm;
}
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;
}
}
nginx 部分基于配置中的位置来匹配位置块。理想情况下,你会颠倒你现在所拥有的。 nginx 配置中的位置块会更高。为此,location = /50x.html 也会向上移动。订单是
更多关于 nginx 位置优先级。另外,您可以随时查看官方文档。 location 块的 nginx 文档 http://nginx.org/en/docs/http/ngx_http_core_module.html#location
当你的应用是vuejs时,需要这样写,可以防止404,注意双/test/
location ^~/test/ {
alias /usr/local/soft/vuejs/;
try_files $uri $uri/ /test/index.html;
}
我刚刚解决了这个(未找到index.html)问题。
对我来说,我错误地输入了我的项目名称,以将您的 ec2 项目名称与 nginx 路径相匹配。
移至 nginx/sites-enabled 以检查 nginx 路径
cat
你的项目名称移至主目录以检查您的项目名称
4. CD
5.ls
6. 如果你的 ec2 项目名称(对我来说:practice)与你的 nginx 路径名(对我来说:practice)不匹配,那么你可能会得到“index.html not find error”
和我的 server-blocks.conf
server {
listen 80;
index index.html index.htm index.nginx-debian.html;
server_name 13.xxx.xxx.xx;
location / {
root /var/www/portaladmin/;
proxy_pass http://13.xxx.xxx.xx:80/;
}
error_log /var/log/nginx/portaladmin-erorr.log;
}
和我的负载均衡器.conf
server {
listen 80;
server_name xx.xxx.xxx.xx
access_log /home/ec2-user/logs/lb-access.log;
error_log /home/ec2-user/logs/lb-error.log;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://13.xxx.xxx.xx:80;
}
}
使用 Kubernetes 创建 nginx 和 sftp pod。我发现我的 sftp-deployment.yaml 文件中的 mountPath 与我的 sftp-server 中的用户名相关。
当我更改 username 而不更改 mountPath 值以匹配我的用户名时,就会发生错误。因此,文件上传到 '/home/old-username' 而不是 '/home/new-username'。
cd /etc/nginx/sites-available/ sudo nano 默认
在 https 或服务器中的此配置文件中
$url /$url /index.html