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

推荐订阅源

Cisco Talos Blog
Cisco Talos Blog
Google DeepMind News
Google DeepMind News
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
T
The Blog of Author Tim Ferriss
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
B
Blog RSS Feed
Y
Y Combinator Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Hacker News - Newest:
Hacker News - Newest: "LLM"
T
Tailwind CSS Blog
AWS News Blog
AWS News Blog
Jina AI
Jina AI
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Recorded Future
Recorded Future
NISL@THU
NISL@THU
N
Netflix TechBlog - Medium
雷峰网
雷峰网
Vercel News
Vercel News
Latest news
Latest news
S
Security @ Cisco Blogs
W
WeLiveSecurity
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Schneier on Security
Schneier on Security
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
L
Lohrmann on Cybersecurity
T
Tor Project blog
Hugging Face - Blog
Hugging Face - Blog
TaoSecurity Blog
TaoSecurity Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The Hacker News
The Hacker News
J
Java Code Geeks
美团技术团队
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
H
Hacker News: Front Page
C
Cyber Attacks, Cyber Crime and Cyber Security
C
CERT Recently Published Vulnerability Notes
S
Secure Thoughts
Microsoft Security Blog
Microsoft Security Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
B
Blog
博客园 - 三生石上(FineUI控件)
The Register - Security
The Register - Security
G
Google Developers Blog
Webroot Blog
Webroot Blog

博客园 - 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