当前位置:   article > 正文

记录华为云服务器(Linux 可视化 宝塔面板)-- Nginx配置出现403错误记录(四种情景)_宝塔面板403

宝塔面板403


最近配置多页项目,需指定根目录为某个页面
配置nginx出现了403的情况

  location / {
            # autoindex on;
            root AuditAndInspection/;
            index index.html;
            try_files $uri $uri/ /pages/inspection.html;
            gzip_static on;
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

修改配置如下后,重启,正常了~

        location / {
            # autoindex on;
            root AuditAndInspection/;
            index pages/inspection.html;
            try_files $uri $uri/ /pages/inspection.html;
            gzip_static on;
        }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

原因是因为inde指向的缺少对应文件,指定正常即可

顺便收集记录下其他403情况

第一种、配置文件index指定文件找不到

同上述描述的,index指定的文件不存在的时候,会出现403,配置对重启就行了

第二种、root配置问题

查看nginx.conf
发现是nobody,root
修改为

user root;
  • 1

第三种、文件操作权限

可修改web目录的读写权限
或者是把nginx的启动用户改成目录的所属用户,重启Nginx即可解决

chmod -R 777 /data
  • 1
chmod -R 777 /data/www/
  • 1

第四种、防火墙问题

一般配置端口,需防火墙放开对应配置

#SELINUX=enforcing
SELINUX=disabled
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/672763
推荐阅读
相关标签
  

闽ICP备14008679号