no index.lighttpd.html in var/www/html



我想通过烧瓶和lighttpd远程控制Raspberry Pi 3B+。

我想通过网络控制RC汽车。

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python-pip
sudo pip install flask
sudo apt-get install lighttpd
sudo apt autoremove

执行上述命令后,将创建/var/www/html文件夹。此外,在/etc/lighttpd/中创建lighttpd.conf。但是,index.lighttpd.html并不是在/var/www/html中创建的。因此,即使我在网络上打开localhost,lighttpd也不会出现。

我尝试了很多东西。我在初始化sd卡后重试了几次。我直接通过"git clone"收到了lighttpd文件,但没有使用pip,但结果是一样的。

  • sudo apt安装lighttpd lighttpd文档

sudo apt-get安装python3烧瓶

  • 此外,还使用了上述所有命令。lighttpd.conf文件似乎也没有问题
server.document-root        = "/var/www/html"
server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
server.errorlog             = "/var/log/lighttpd/error.log"
server.pid-file             = "/var/run/lighttpd.pid"
server.username             = "www-data"
server.groupname            = "www-data"
server.port                 = 80 

我该怎么办?

echo "<html><body>Hello World!</body></html>" > /var/www/html/index.html它是您的web服务器实例。您需要配置要提供的内容。我建议阅读lighttpd文档https://wiki.lighttpd.net/

相关内容

  • 没有找到相关文章

最新更新