thttpd 的移植与注意事项
1. 官网下载
最好下载自己熟悉的版本
2. 解压
tar -zxvf thttpd-2.25b.tar.gz
3. ./configure
注意./configure –host= 编译链前缀, 指定交叉编译链并不能改变 Makefile 中的编译链,
所以直接./configure
4. 修改 Makefile
修改三个 Makefile,分别是 thttpd/Makefile
、thttpd/cgi-src/Makefile
、thttpd/extras/Makefile
vi Makefile
CC = gcc
-> CC=arm-linux-gcc
, 将 gcc 前缀修改为自己编译链的前缀
5.make
6.cp 目标文件到目标文件系统
cp thttpd/thttpd /sbin/
拷贝 thttpd 到目标文件系统 /bin 下
cp thttpd/contrib/redhat-rpm/thttpd.conf /etc/
拷贝配置文件到目标系统 /etc 下
mkdir -p /opt/www/cgi-bin
chmod 755 /opt/www
创建存放网页的目录, 权限指定为 755
cp thttpd/index.html /opt/www/
拷贝 demon 网页到 www 目录
7. 修改 conf 文件
# This section overrides defaults
dir=/opt/www
#chroot
user=root
logfile=/etc/thttpd/thttpd.log
pidfile=/etc/thttpd/thttpd.pid
cgipat=/cgi-bin/*.cgi
# This section _documents_ defaults in effect
# port=80
# nosymlink# default = !chroot
# novhost
# nocgipat
# nothrottles
# host=0.0.0.0
# charset=iso-8859-1
注意:一定要注释掉 chroot,chroot 会限制 cgi 程序的访问路径,也就是只能访问 /opt/www 下的文件,包括程序的动态链接库,cgi 程序必须静态编译才能运行,脚本等语言都不能运行
8. 运行
thttpd -D -C /etc/thttpd.conf &
9. 加入开机自启动
根据不同文件系统,设置不一样。