欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Nginx访问图片403错误

程序员文章站 2022-05-29 21:29:59
...

conf中访问图片的代码块

   location ~ .*\.(jpg|gif|png)$ {
        gzip on;
        gzip_http_version 1.1;
        gzip_comp_level 2;
        gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
        root /usr/share/nginx/html/code/images;
   }

因为是复制来的文件夹, 因此 /usr/share/nginx/html/code/images 的权限不是755, 因此需要将images的权限设置为755即可

sudo chmod 755 /usr/share/nginx/html/code/images
相关标签: nginx 403