nginx+apache

nikohal

Verified User
Joined
Dec 12, 2011
Messages
34
Hi,
I try run my upload progress bar but it's not working. Nginx need this nginx-upload-progress-module, but how i install that?

Regards, Niko H.
 
If you want to add nginx-upload-progress-module to NGINX in custombuild2, it will need to be compiled in. The module that needs to be compiled in will have a --add-module type flag which will need to be used. To add this flag, run the following:
Code:
cd /usr/local/directadmin/custombuild
./build update
wget -O nginx-upload-progress-module.tar.gz https://github.com/masterzen/nginx-upload-progress-module/archive/master.tar.gz
tar -zxvf nginx-upload-progress-module.tar.gz
mkdir -p custom/nginx_reverse/
cp configure/nginx_reverse/configure.nginx custom/nginx_reverse/configure.nginx
vi custom/nginx_reverse/configure.nginx



# add your --add-module=/usr/local/directadmin/custombuild/nginx-upload-progress-module-master/ line to the end of the file,
# and make sure the character exists at the end of all lines except the last one.
Code:
./build clean 
./build nginx
/etc/init.d/nginx restart


http://wiki.nginx.org/HttpUploadProgressModule
 
Back
Top