nginx upload module 的安装

来源:互联网 发布:ubuntu windows双系统 编辑:程序博客网 时间:2024/06/05 00:49

安装记录

1、pcre

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.34.tar.gz
tar xvzf pcre-8.34.tar.gz

2、zlib

wget http://zlib.net/zlib-1.2.8.tar.gz
tar xzvf zlib-1.2.8.tar.gz
./config
make && make install

3、openssl

wget http://www.openssl.org/source/openssl-1.0.1f.tar.gz
tar xvzf openssl-1.0.1f.tar.gz
cd openssl-1.0.1f
./config --prefix=/usr/local/ssl shared zlib-dynamic
make && make install

4、nginx_upload_module

wget http://www.grid.net.ru/nginx/download/nginx_upload_module-2.2.0.tar.gz
tar xvzf nginx_upload_module-2.2.0.tar.gz

5、nginx

wget http://nginx.org/download/nginx-1.2.2.tar.gz
tar xvzf nginx-1.2.2.tar.gz
cd nginx-1.2.2
./configure --prefix=/usr/local/nginx --with-pcre=../pcre-8.34 --with-openssl=../openssl-1.0.1f --with-zlib=../zlib-1.2.8  --add-module=../nginx_upload_module-2.2.0 --without-mail_pop3_module --without-mail_imap_module  --without-mail_smtp_module --with-http_ssl_module  --with-http_stub_status_module  --with-http_gzip_static_module

make && make install


0 0