标签:
1. 安装依赖库
yum -y install gcc automake autoconf libtool make
yum -y install gcc-c++ glibc
yum -y install libmcrypt-devel mhash-devel libxslt-devel \
libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel \
zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel \
ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel \
krb5 krb5-devel libidn libidn-devel openssl openssl-devel
yum -y install pcre-devel
wget http://softlayer.dl.sourceforge.net/sourceforge/mcrypt/libmcrypt-2.5.8.tar.gz
2.安装PHP
wget http://cn2.php.net/distributions/php-5.6.8.tar.gz
./configure --prefix=/usr/local/php --enable-fpm --with-mcrypt \
--enable-mbstring --disable-pdo --with-curl --disable-debug --disable-rpath \
--enable-inline-optimization --with-bz2 --with-zlib --enable-sockets \
--enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex \
--with-mhash --with-pcre-regex --with-mysql --with-mysqli \
--with-gd --with-jpeg-dir --disable-opcache
3.安装Nginx
wget wget ftwget http://nginx.org/download/nginx-1.6.0.tar.gz
./configure --with-http_ssl_module --with-pcre
标签:
原文地址:http://www.cnblogs.com/wkccs/p/4476686.html