nginx: [emerg] location "/floor/index.html" is outside location "/index.html" in /etc/nginx/conf.d/www.gwn.cloud.conf:93
时间: 2023-12-03 08:02:58 浏览: 156
这是一个 Nginx 的错误信息,表示在配置文件 `/etc/nginx/conf.d/www.gwn.cloud.conf` 的第 93 行中,`/floor/index.html` 这个位置与 `/index.html` 的位置不匹配。具体来说,可能是 `/floor/index.html` 这个位置被误写在了 `/index.html` 的外面,或者是其他配置错误导致的。需要检查一下配置文件中的语法和逻辑,确保所有的位置都正确嵌套。
相关问题
启动nginx命令: docker run --name nginx -p 80:80 -p 443:443 \ -v /usr/local/nginx/html:/usr/share/nginx/html \ -v /usr/local/nginx/conf/nginx.conf:/etc/nginx/nginx.conf/ \ -v /usr/local/nginx/conf.d:/etc/nginx/conf.d/ \ -v /usr/local/nginx/logs:/var/log/nginx \ -v /usr/local/nginx/ssl:/etc/nginx/ssl \ --privileged=true -d --restart=always nginx 报错 nginx: [emerg] cannot load certificate "/etc/nginx/ssl/www.huodongchi.com.pem": BIO_new_file() failed (SSL: error:02001002:system library:fopen:No such file or directory:fopen('/etc/nginx/ssl/www.huodongchi.com.pem','r') error:2006D080:BIO routines:BIO_new_file:no such file)
这个报错是因为无法加载证书文件 "/etc/nginx/ssl/www.huodongchi.com.pem",原因是该文件不存在或者路径不正确。请确保在容器内的路径 "/etc/nginx/ssl" 下存在名为 "www.huodongchi.com.pem" 的证书文件,并且路径正确。你可以进入容器内部检查路径和文件是否正确。
一直 报nginx: [emerg] a duplicate default server for 0.0.0.0:80 in /etc/nginx/conf.d/utpre.caixuetang.cn.conf:8 nginx: configuration file /etc/nginx/nginx.conf test failed
这个错误提示是因为你在 `/etc/nginx/conf.d/utpre.caixuetang.cn.conf` 文件中定义了重复的默认服务器。请检查该文件中的配置并确保没有重复定义服务器。你也可以检查 `/etc/nginx/nginx.conf` 文件中是否有其他默认服务器的定义。如果有,请将其删除或注释掉。完成后,请重新测试nginx的配置文件。
阅读全文