注册 登录
电子工程世界-论坛 返回首页 EEWORLD首页 频道 EE大学堂 下载中心 Datasheet 专题
chenzhufly的个人空间 https://home.eeworld.com.cn/space-uid-57209.html [收藏] [复制] [分享] [RSS]
日志

基于beaglebone的lighttpd的使用(1)

已有 2139 次阅读2014-2-13 22:03


最近研究了一下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/
  1. #server.document-root        = "/usr/share/matrix-gui-2.0/"
  2. <font color="#4169e1">server.document-root        = "/test/http/"</font>
复制代码


     2) 修改cgi.assign增加".cgi" => ""
  1. #### CGI module
  2. cgi.assign                 = ( ".php"  => "/usr/bin/php-cgi",
  3. <font color="#0000ff">                               ".cgi" => "" )</font>
复制代码
2.  建立/test/http/
  1. <font color="#4169e1">mkdir /test/http/</font>
复制代码

3.  建立index.html
  1. <html><head><title> lighttpd_test </title> </head> <font color="#0000ff">//网页的标题</font>
  2. <body>
  3. <center><br><h4><font color=green><font color="#ff00ff">Hello EEWORLD</font></font></h1> <br><br>
  4. <img src="1.gif"> <br><br>  <font color="#0000ff">//插入一个图片</font>
  5. <a href="/test/http/sh.cgi"><h4>This is cgi test</h4></a> <font color="#0000ff">//测试一个cgi程序</font>
  6. <h4><font color=red><font color="#ff00ff">bbs.eeworld.com.cn</font></font></h4>
  7. <h4><font color=green><font color="#ff00ff">From chenzhufly</font></font></h4>
  8. </body></html>
复制代码

4.  效果图如下










本文来自论坛,点击查看完整帖子内容。

全部作者的其他最新日志
评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 注册

热门文章