首页 > 系统相关 >nginx “403 Forbidden” 错误的原因及解决办法

nginx “403 Forbidden” 错误的原因及解决办法

时间:2022-11-03 10:27:38浏览次数:78  
标签:Forbidden nginx html 403 usr 权限 local

多数是权限问题
root /home/jd/code/dapingdist;

  • 这里要从home---->jd----->code ,从外向内,一层层排查,是否有可读权限
1.权限配置不正确

这个是nginx出现403 forbidden最常见的原因。

为了保证文件能正确执行,nginx既需要文件的读权限,又需要文件所有父目录的可执行权限。

例如,当访问/usr/local/nginx/html/image.jpg时,nginx既需要image.jpg文件的可读权限,也需要/, /usr,/usr/local,/usr/local/nginx,/usr/local/nginx/html的可以执行权限。

解决办法:设置所有父目录为755权限,设置文件为644权限可以避免权限不正确。

标签:Forbidden,nginx,html,403,usr,权限,local
From: https://www.cnblogs.com/pansidong/p/16853537.html

相关文章

  • nginx获得客户端IP地址
    文档说明:只记录关键地方;nginx获得IP地址default.conf配置如下#返回json格式location/ip/json{charsetutf-8;default_typeapplic......
  • nginx 强制https
    nginx强制https 通常有如下两种方法强制https推荐第二种,第二种更高效1、使用nginx的rewrite方法server{listen80;server_namexxx.c......
  • nginx 基本配置
    server{listen443ssl;server_nameexsi.yxdict.com;ssl_certificate/home/zzywb/ssl/exsi.yx.com_bundle.pem;ssl_certificate_key/home/zzywb......
  • nginx 重新编译,添加模块
    cdnginx-1.19.9./configure--prefix=/usr/local/nginx--with-http_stub_status_module--with-http_ssl_modulemake复制nginx-1.19.9/objs/nginx到/usr/local/ngi......
  • nginx配置http服务简单入门
    nginx是用的最多的web服务器java和python可以写nginx服务,为什么还需要nginx是因为nginx是纯粹的做http实现的服务,并没有业务逻辑,做http代理1.需要安装nginxnginx.org主......
  • nginx高并发优化之文件描述符设置
    一、nginx设置/etc/security/limits.conf*softnofile65535*hardnofile65535*softnproc65535*hardnproc65535*softcoreunlimited*softstack65535通过sysc......
  • tornado + nginx 线上部署
    为什么需要nginxtornado内置的webhttpserver功能受限python的多线程是解释器GIL的大锁实际是一个线程运行充分利用多核能力nginx点击查看代码usernginx......
  • 关于 NGINX Kubernetes Gateway,你需要知道的 5 件事
    原文作者:IlyaKrutovofF5原文链接:​​​关于NGINXKubernetesGateway,你需要知道的5件事​​转载来源:NGINX官方网站在过去的几年里,F5NGINX帮助您成功走完了Kuberne......
  • nginx的域名重写和转发案例
    对url进行重写location=/tongyong_OTA_1.0.3.bin{rewrite^(.*)$http://36.133.87.223/lecode-server/lecode-dap-server/api/open/server/ota/ton......
  • nginx常用指令
    1.启动cdusr/local/nginx/sbin./nginx2.检查配置文件是否正确nginx-t-c/usr/local/nginx/conf/nginx.conf或者cd/usr/local/nginx/sbin./nginx-t3.......