我正在尝试将名为index.html
的HTML文件加载到我的Lighttpd Web服务器上,该文件只显示一些简单的文本和图像。
问题是,每次我将Raspberry Pi的IP地址放入地址栏时,我都会收到403 - Forbidden
错误消息。
ls -al
给出了:
-rwxr-xrwx 1 root root 351 Dec 20 16:52 /var/www/html/index.html
文件路径以绿色突出显示。
我在www-data, root
和pi
之间尝试了多种所有权组合,但我似乎无法解决这个问题。我尝试过的另一件事是将Lighttpd.conf
文件中的文档根目录更改为/var/www/
,以便可以访问该文件。
有人可以提供一些帮助吗?非常感谢
答案 0 :(得分:0)
如果您在/ var / www / html文件夹中编写index.html而没有权限问题,则应更改权限或所有权
sudo chmod www-data:www-data -r html
Check /etc/lighttpd/lighttpd.conf
if
server.username = "www-data"
and server.groupname too
还要确保
server.document-root = "/var/www/html"
然后重启服务器
systemctl restart lighttpd