nginx安裝體驗
閒來無事,裝裝nginx 順便熟悉熟悉配置 。寫篇小博客。
我的操作系統是centos
cento平台編譯環境使用如下指令
安裝make:
yum -y install gcc automake autoconf libtool make
安裝g++:
yum install gcc gcc-c++
因為 nginx 需要pcre, zlib,前者為了重寫rewrite,後者為了gzip壓縮
我的目錄是:
/home/zhangyong/soft
下載完 pcre, zlib後 configure 然後 make 最後 make install
然後安裝 nginx
我的配置如下
1
./configure --sbin-path=/home/zhangyong/programes/nginx/nginx --conf-path=/home/zhangyong/programes/nginx/nginx.conf \
2
--pid-path=//home/zhangyong/programes/nginx/nginx.pid \
3
--with-pcre=/home/zhangyong/soft/pcre-8.21 \
4
--with-zlib=/home/zhangyong/soft/zlib-1.2.8 \
啟動nginx 正常 呵呵 可以休息了天天進步一點點 總會更好的