本帖最后由 chenzhufly 于 2014-2-13 22:09 编辑
最近研究了一下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.virtual-* options
- #server.document-root = "/usr/share/matrix-gui-2.0/"
- server.document-root = "/test/http/"
复制代码 2) 修改
cgi.assign增加".cgi" => ""
- #### CGI module
- cgi.assign = ( ".php" => "/usr/bin/php-cgi",
- ".cgi" => "" )
复制代码
2. 建立/test/http/
3. 建立index.html
- <html><head><title> lighttpd_test </title> </head> //网页的标题
- <body>
- <center><br><h4><font color=green> Hello EEWORL</font></h1> <br><br>
- <img src="1.gif"> <br><br> //插入一个图
- <a href="/test/http/sh.cgi"><h4>This is cgi test</h4></a //测试一个cgi程
- <h4><font color=redbbs.eeworld.com.c</font></h4>
- <h4><font color=green>From chenzhufl</font></h4>
- </body></html>
复制代码
4. 效果图如下