我在centos中安装了Lighttpd。它全新安装,服务器来自数字海洋。 为了安装,我从howtoforge获取了指南。这是在本网站的一篇文章中提出的。
现在问题是我一直收到404找不到错误。我甚至没有改变任何东西,所以它应该显示默认的欢迎页面?但仍然没有。 我按照指南在conf.file中禁用了ipv6。
如果有人可以建议我,如果我从安装指南中遗漏了任何内容。
谢谢。
答案 0 :(得分:2)
要检查的几件事。
在lighttpd.conf内部,请确保将server.document-root
设置为您的网络根目录。
确保index-file.names
设置为( "index.php", "index.html", "index.lighttpd.html" )
好。
在您的webroot内部创建一个index.html,看看它是否在浏览器中加载。
答案 1 :(得分:0)
转到
sudo nano /etc/lighttpd/lighttpd.conf
并取消注释:
server.max-fds = 2048
重启服务
- 方式可以是service lighttpd restart
答案 2 :(得分:0)
服务器统计信息所在的默认根位置:
var.server_root = "/var/www"
server.document-root = server_root + "/htdocs"
因此,您必须将index.html
放在/var/log/www/htdocs
目录