gpt4 book ai didi

Nginx 不提供图像(403 - 禁止错误)

转载 作者:行者123 更新时间:2023-12-04 23:20:29 24 4
gpt4 key购买 nike

我刚刚设置了一个nginx服务器。我可以访问我的网页(“正在 build 中”页面),但是尽管服务器正确地为一个图像(名为“logo.png”)提供了服务器,但同一目录中的另一个图像(我在 nginx 的根目录下拥有所有内容)未提供服务并引发“403 - 禁止”错误)。下面我将向您展示我的 nginx.conf 文件的“http”部分。

http {

include mime.types;
default_type application/octet-stream;

sendfile on;

keepalive_timeout 65;

server {
listen 80;
server_name ***********.com;
root html;

location / {
index index.html index.htm;
}
}
}

你对我如何解决这个问题有什么建议吗??

最佳答案

nginx-user 可能无权读取第二个文件。选项:

1)更改该文件的chmod,以便每个人都可以阅读

2) 将 nginx-user 和 file-owner-user 添加到同一个组并允许组读取该文件

关于Nginx 不提供图像(403 - 禁止错误),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28299897/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com