Nginx: Difference between revisions
Jump to navigation
Jump to search
Anthoanthop (talk | contribs) No edit summary |
Anthoanthop (talk | contribs) No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Nginx | == Compile Nginx with upload-progress-module == | ||
<syntaxhighlight lang="bash"> | |||
aptitude update && aptitude install -y libpcre3-dev make gcc zip libssl-dev | |||
wget http://nginx.org/download/nginx-1.8.0.tar.gz | |||
wget https://github.com/masterzen/nginx-upload-progress-module/archive/master.zip | |||
tar zxvf nginx-1.8.0.tar.gz | |||
unzip master.zip | |||
cd nginx-1.8.0 | |||
./configure --prefix=/etc/nginx/ --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf \ | |||
--error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log \ | |||
--pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock \ | |||
--http-client-body-temp-path=/var/cache/nginx/client_temp \ | |||
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \ | |||
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \ | |||
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \ | |||
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \ | |||
--user=nginx --group=nginx --with-http_ssl_module \ | |||
--with-http_realip_module --with-http_addition_module --with-http_sub_module \ | |||
--with-http_dav_module --with-http_flv_module --with-http_mp4_module \ | |||
--with-http_gzip_static_module --with-http_random_index_module \ | |||
--with-http_secure_link_module --with-http_stub_status_module --with-mail \ | |||
--with-mail_ssl_module --with-file-aio --with-ipv6 \ | |||
--add-module=../nginx-upload-progress-module-master | |||
make | |||
make install | |||
</syntaxhighlight> |
Latest revision as of 16:59, 6 May 2015
Compile Nginx with upload-progress-module
aptitude update && aptitude install -y libpcre3-dev make gcc zip libssl-dev
wget http://nginx.org/download/nginx-1.8.0.tar.gz
wget https://github.com/masterzen/nginx-upload-progress-module/archive/master.zip
tar zxvf nginx-1.8.0.tar.gz
unzip master.zip
cd nginx-1.8.0
./configure --prefix=/etc/nginx/ --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx --group=nginx --with-http_ssl_module \
--with-http_realip_module --with-http_addition_module --with-http_sub_module \
--with-http_dav_module --with-http_flv_module --with-http_mp4_module \
--with-http_gzip_static_module --with-http_random_index_module \
--with-http_secure_link_module --with-http_stub_status_module --with-mail \
--with-mail_ssl_module --with-file-aio --with-ipv6 \
--add-module=../nginx-upload-progress-module-master
make
make install