• Nginx 报错: 403 forbidden


    对于运维来说,Nginx 报错: 403 forbidden,首先会想到权限问题,如果权限没有问题,那还有什么错误会报403 forbidden呢?
    

    一权限问题

    三步走:
    
    #1.检查nginx.conf的user 是否为root;
    
    #2.检查文件所属目录是否有权限
    
    #3.检查nginx程序目录权限
    

    二、Selinux没关(最为意想不到)

    今天部署生产环境,发现一直报错:403 forbidden
    最后查看selinux发现selinux状态为:
    [root@mccann-dbh /data]$ getenforce 
    enforcing
    
    修改selinux状态:
    # 临时修改
    [root@mccann-dbh /data]$ setenforce 0
    
    [root@mccann-dbh /data]$ getenforce 
    permissive
    
    #永久修改
    [root@mccann-dbh /data]$ vim /etc/selinux/config 
    # This file controls the state of SELinux on the system.
    # SELINUX= can take one of these three values:
    #     enforcing - SELinux security policy is enforced.
    #     permissive - SELinux prints warnings instead of enforcing.
    #     disabled - No SELinux policy is loaded.
    SELINUX=disabled
    # SELINUXTYPE= can take one of three values:
    #     targeted - Targeted processes are protected,
    #     minimum - Modification of targeted policy. Only selected processes are protected. 
    #     mls - Multi Level Security protection.
    SELINUXTYPE=targeted
    
    重载nginx,发现可以正常访问了。
    
    
    

    三缺少索引文件

    1.缺少index.html文件

    server {
    listen 80;
    server_name http://dbhh5.mccann.dataxbusiness.com/;
    index index.html;
    root /data/webproject/dbhh5;

    如果在/data/webproject/dbhh5下面没有index.php,index.html的时候,直接访问域名,找不到文件,会报403 forbidden

  • 相关阅读:
    Struts2 (二)入门
    Struts2 (一)入门
    Hibernate 配置和注解式 ,关联关系
    Hibernate入门,HQL,双向表关联关系
    web自定义标签
    Spring整合MyBatis 基础
    PHP字符串——字符串函数
    php功能模块学习笔记
    PHP常用符号和函数
    asp xmlhttp 读取文件
  • 原文地址:https://www.cnblogs.com/GAO321/p/15239352.html
Copyright © 2020-2023  润新知