惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
P
Proofpoint News Feed
D
Docker
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
云风的 BLOG
云风的 BLOG
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
IT之家
IT之家
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
Martin Fowler
Martin Fowler
S
SegmentFault 最新的问题
B
Blog
D
DataBreaches.Net

博客园 - witer666

PHP API 框架开发的学习 [android开发必备] Android开发者社区汇总 android定时器 微博feed系统的push和pull模式和时间分区拉模式架构探讨 一个mysql小技巧 redhat安装memcacheQ php empty问题 Linux PHP连接MSSQL Curl参数一览 Redhat Memcache UDF安装配置 Redhat Mongodb学习笔记 PHP使用技巧 位运算符C语言 HTTP 状态代码表示什么意思? PHP正则表达式学习参考的文章 Redhat Cacti安装配置 Percona-Server5.5安装配置 50点提高PHP编程效率 引入缓存提升性能 wget使用
Redhat Lighttpd安装配置
witer666 · 2011-04-19 · via 博客园 - witer666

一、软件包

a) pcre-devel-6.6-2.el5_1.7.i386.rpm

b) lighttpd-1.4.28.tar.gz

二、安装步骤

a) Rpm –ivh pcre-devel-6.6-2.el5_1.7.i386.rpm

b) Tar zxvf lighttpd-1.4.28.tar.gz

c) Cd lighttpd-1.4.28

d) ./configure –prefix=/usr/local/lighttpd

e) Make

f) Make install

g) Mkdir /etc/lighttpd

h) cp doc/config/lighttpd.conf /etc/lighttpd/

i) cp -r doc/config/conf.d/ /etc/lighttpd/conf.d/

j) cp doc/config/modules.conf /etc/lighttpd/

k) cp doc/initscripts/rc.lighttpd.redhat /etc/init.d/lighttpd

l) vi /etc/init.d/lighttpd

找到prog="lighttpd"节,注释掉默认的,添加:
lighttpd="/usr/local/lighttpd/sbin/lighttpd"

m) mkdir –p /srv/www/htdocs

n) useradd lighttpd

o) chown –r lighttpd:root /srv/www/htdocs

p) cd /srv/www/htdocs

q) vi index.html

r) chkconfig –add lighttpd

s) chkconfig lighttpd on

t) server lighttpd start

u) ps aux|grep lighttpd

v) http://localhost/index.html