CentOS 5.6 编译安装Nginx 1.0.4

#wget http://mirrors.sohu.com/nginx/nginx-1.0.4.tar.gz
#tar zxvf nginx-1.0.4.tar.gz
#cd nginx-1.0.4

./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.

等再次执行./configure

验证nginx运行是否成功
$ curl -i http://localhost
HTTP/1.1 200 OK
Server: nginx/0.9.1
Date: Fri, 03 Dec 2010 02:34:01 GMT
Content-Type: text/html
Content-Length: 151
Last-Modified: Fri, 03 Dec 2010 02:00:40 GMT
Connection: keep-alive
Accept-Ranges: bytes

lnmp下nginx和pureftp无法开机自动启动

下面是 /etc/rc.d/rc.local 文件
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
/usr/local/nginx/sbin/nginx

相关推荐