线上环境,centos6.3的系统。
1.安装nginx
wget http://www.nginx.com.cn/download/nginx-1.3.9.tar.gz
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.30.tar.gzxcache
wget http://zlib.net/zlib-1.2.8.tar.gz
wget http://www.openssl.org/source/openssl-1.0.0j.tar.gz
wget http://labs.frickle.com/files/ngx_cache_purge-2.1.tar.gz 图片缓存模块
./configure --user=www --group=www --prefix=/usr/local/nginx --with-openssl=../openssl-1.0.0j --with-zlib=../zlib-1.2.8 --with-pcre=../pcre-8.30 --with-http_ssl_module --add-module=../ngx_cache_purge-2.1 --with-http_sub_module --with-http_stub_status_module --with-http_gzip_static_module
make && make install
2.安装完成之后,就可以启动nginx了。
/usr/local/nginx/sbin/nginx
3.查看nginx有没有启动
netstat -napt | grep nginx
4.然后通过ip访问
5.由于本机上已经有mysql了,这里就忽略掉
6.我们直接安装php了
安装php之前,我们得先安装库文件.这里就用yum安装吧
yum -y install libmcrypt* mhash* libxml2* libpng* freetype* libjpeg* bzip* libcurl*
13.编辑/usr/local/nginx/conf/nginx.conf,整合nginx和php,并启用如下选项:
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location / {
root html;
index index.html index.htm index.php;
}
14.改完这几处地方就差不多了,重启下nginx
15.测试下php是不是能正常显示了
16.接下来开始编译xcache
wget http://xcache.lighttpd.net/pub/Releases/3.0.3/xcache-3.0.3.tar.gz
./configure --enable-xcache --enable-xcache-coverager --with-php-config=/usr/local/php/bin/php-config
make && make install
17.编辑php.ini,整合php和xcache
mkdir /etc/php.d
cp xcache.ini /etc/php.d
18.编辑/etc/php.d/xcache.ini,找到extension开头的行,修改为如下行:
extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/xcache.so
19.重新启动php-fpm进程
service php-fpm restart
chkconfig php-fpm on
20.重新打开测试页面,就可以看到了