最近研究了一下beaglebone下lighttpd的使用,与大家分享一下。lighttpd的相关内容大家可以google一下
环境介绍:
1. beaglbone
2. llinux-3.2.42+
Linux version 3.2.42+ (root@ubuntu) (gcc version 4.7.3 20130226 (prerelease) (crosstool-NG linaro-1.13.1-4.7-2013.03-20130313 - Linaro GCC 2013.03) ) #5 Mon Feb 10 08:18:41 PST 2014
3. NFS文件系统
主要步骤:
1. 修改/etc/lighttpd.conf
1) 把
server.document-root修改为自己需要放置主页的位置,我的位置是/test/http/- #server.document-root = "/usr/share/matrix-gui-2.0/"
- <font color="#4169e1">server.document-root = "/test/http/"</font>
复制代码
2) 修改
cgi.assign增加".cgi" => ""
- #### CGI module
- cgi.assign = ( ".php" => "/usr/bin/php-cgi",
- <font color="#0000ff"> ".cgi" => "" )</font>
复制代码2. 建立/test/http/
- <font color="#4169e1">mkdir /test/http/</font>
复制代码
3. 建立index.html
- <html><head><title> lighttpd_test </title> </head> <font color="#0000ff">//网页的标题</font>
- <body>
- <center><br><h4><font color=green><font color="#ff00ff">Hello EEWORLD</font></font></h1> <br><br>
- <img src="1.gif"> <br><br> <font color="#0000ff">//插入一个图片</font>
- <a href="/test/http/sh.cgi"><h4>This is cgi test</h4></a> <font color="#0000ff">//测试一个cgi程序</font>
- <h4><font color=red><font color="#ff00ff">bbs.eeworld.com.cn</font></font></h4>
- <h4><font color=green><font color="#ff00ff">From chenzhufly</font></font></h4>
- </body></html>
复制代码
4. 效果图如下
本文来自论坛,点击查看完整帖子内容。