`
haoningabc
  • 浏览: 1477853 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

nginx 上传进度条

阅读更多
费劲周折,一晚上终于搞定了,nginx版本1.38
--------------

---------------
测试php是否好使
cat index.php
<?php  phpinfo(); ?> 

nginx上传进度条
4部分
1.php的支持,自带的,就是建立一个fast-cgi跑php,提供一个test.php显示最终结果
2.nginx_upload_module 上传插件
http://www.grid.net.ru/nginx/download/nginx_upload_module-2.2.0.tar.gz
3.nginx_upload_progress_module,上传进度条插件
akostrikov-nginx-upload-progress-module-v0.8.2-1-g3d8e105.zip
http://wiki.nginx.org/HttpUploadProgressModule
下载
https://nodeload.github.com/akostrikov/nginx-upload-progress-module/zipball/master
4.https://github.com/drogus/jquery-upload-progress ,显示进度条的jquery插件


参考链接:
http://wiki.nginx.org/HttpUploadProgressModule
http://www.grid.net.ru/nginx/upload.en.html

nginx基础的包:
yum install openssl-devel zlib-devel prce-devel
./configure --prefix=/usr/local/nginx --add-module=/usr/local/app/nginx_upload_module-2.2.0 --add-module=/usr/local/app/masterzen-nginx-upload-progress-module-a788dea --with-debug


如果
/usr/local/app/nginx_upload_module-2.2.0/ngx_http_upload_module.c: 在函数‘ngx_http_upload_merge_ranges’中:
/usr/local/app/nginx_upload_module-2.2.0/ngx_http_upload_module.c:1682:22: 错误:变量‘result’被设定但未被使用 [-Werror=unused-but-set-variable]

出现这个错误
就把Makefile文件里的 -Werror去掉
在fedora17中遇到
在redhat6.3中没有




配置文件需要注意
注意,官方的配置文件不对
需要加个这个
location ~ (.*)/x-progress-id:(\w*) {
			rewrite ^(.*)/x-progress-id:(\w*)   $1?X-Progress-ID=$2;
		}


php的支持:
yum install spawn-fcgi
yum install php
yum install php-cgi
test.php
[root@haoning html]# cat test.php 
<?php
print_r($_POST);
?>

启动fast-cgi支持php
groupadd www-data
useradd www-data -g www-data
/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9001 -u www-data -g www-data -f /usr/bin/php-cgi -P /var/run/fastcgi-php.pid


配置文件问:
nginx.conf
[root@fedora17 conf]# cat nginx.conf
worker_processes  1;
events {
    worker_connections  1024;
}
http {
	autoindex on; 
	autoindex_exact_size off; 
	autoindex_localtime on; 
	default_type application/octet-stream; 
	sendfile on; 
	tcp_nopush on;
	tcp_nodelay on;
	keepalive_timeout 10;
	gzip on;
	gzip_min_length 1k;
	gzip_buffers 4 8k;
	gzip_http_version 1.1;
	gzip_comp_level 3;
	gzip_types text/css text/xml text/plain application/x-javascript application/xml application/pdf application/rtf application/x-perl application/x-tcl application/msword application/vnd.ms-excel application/vnd.ms-powerpoint application/vnd.wap.xhtml+xml image/x-ms-bmp;
	gzip_vary on;
	output_buffers 4 32k;
	upload_progress_json_output;
	upload_progress proxied 1m;
	server {
		listen       80;
		server_name  192.168.76.138;
		charset utf-8,gb2312;
		client_max_body_size 2000m;
		location /upload {
				upload_pass   @test;
				upload_store /tmp 1;
				upload_store_access user:r;
				upload_set_form_field "${upload_field_name}_name" $upload_file_name;
				upload_set_form_field "${upload_field_name}_content_type" $upload_content_type;
				upload_set_form_field "${upload_field_name}_path" $upload_tmp_path;
				upload_aggregate_form_field "${upload_field_name}_md5" $upload_file_md5;
				upload_aggregate_form_field "${upload_field_name}_size" $upload_file_size;
				upload_pass_form_field "^submit$|^description$";
				track_uploads proxied 30s;
		}   
		location @test {
				rewrite	^(.*)$	/test.php last;
		}   

		location / {
            proxy_set_header Host $http_host;
			root   html;
			index  index.html index.htm index.php;
		}

 		location ~ (.*)/x-progress-id:(\w*) {
            rewrite ^(.*)/x-progress-id:(\w*)   $1?X-Progress-ID=$2;
        }
		location ^~ /progress {
            report_uploads proxied;
        }
		location ~ \.php$ { 
			fastcgi_pass 127.0.0.1:9001;
			fastcgi_index index.php;
			set $path_info "/";
			set $real_script_name $fastcgi_script_name;
			if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") { set $real_script_name $1;
				set $path_info $2;
			} 
		} 
		location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { 
			root html;
			access_log off;
			expires 30d;
		} 
		location ~ .*\.(js|css|ico)?$ { 
			root html;
			access_log off;
			expires 1h;
		} 
		error_page 500 502 503 504 /50x.html;
		location = /50x.html { 
			root html;
		} 
		fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
		fastcgi_param script_name $real_script_name;
		fastcgi_param path_info $path_info;
		include /usr/local/nginx/conf/fastcgi_params; 
	}

}



简单例子测试是否可以上传
<html>
<head>
<title>Test upload</title>
</head>
<body>
<h2>Select files to upload</h2>
<form enctype="multipart/form-data" action="/upload" method="post">
<input type="file" name="file1"><br>
<input type="file" name="file2"><br>
<input type="file" name="file3"><br>
<input type="file" name="file4"><br>
<input type="file" name="file5"><br>
<input type="file" name="file6"><br>
<input type="submit" name="submit" value="Upload">
<input type="hidden" name="test" value="value">
</form>
</body>
</html>

注意/tmp权限
mkdir /tmp/1 2 3 ...
chmod -R 777 /tmp

然后用jquery的插件的版本:

[root@haoning example]# cat index.html 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
	<head>
		<title>ajaxFileUpload</title>
	    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<script src="../lib/jquery.js"></script>
		<script src="../jquery.uploadProgress.js"></script>
		<script type="text/javascript">
			$(function() {
				$('form').uploadProgress({
					/* scripts locations for safari */
					jqueryPath: "../lib/jquery.js",
					uploadProgressPath: "../jquery.uploadProgress.js",
					start:function(){},
					uploading: function(upload) {$('#percents').html(upload.percents+'%');},
					interval: 2000
			    });
			});
		</script>
		<style type="text/css">
			.bar {
			  width: 300px;
			}
			
			#progress {
			  background: #eee;
			  border: 1px solid #222;
			  margin-top: 20px;
			}
			#progressbar {
			  width: 0px;
			  height: 24px;
			  background: #333;
			}
		</style>
	</head>
	
	<body>  
	  <form id="upload" enctype="multipart/form-data" action="/upload" method="post"><!--注意这里改了-->
        <input name="file" type="file"/>
        <input type="submit" value="Upload"/>
      </form>
		
	    <div id="uploading">
	      <div id="progress" class="bar">
	        <div id="progressbar">&nbsp;</div>
	      </div>
	    </div>
		<div id="percents"></div>
	</body>
</html>


附件中有下好的安装包,不保函yum的
  • 大小: 12.1 KB
分享到:
评论

相关推荐

    nginx TOMCAT 文件下载 上传 进度条 缓存

    标题 "nginx TOMCAT 文件下载 上传 进度条 缓存" 涉及到的是在Web服务器场景中,如何利用Nginx和Tomcat处理文件的下载、上传以及实现进度条显示和缓存优化的技术点。下面将详细介绍这些内容。 1. **Nginx与Tomcat的...

    Nginx下搭建flv视频服务器且支持视频拖动进度条播放.docx

    从官方网址下载播放器包,将`player.swf`文件上传到服务器,并在网页中使用Object/Embed代码进行嵌入。 完成以上步骤后,用户就能在网页上流畅地观看FLV视频,并且可以随意拖动进度条,享受无缝的视频体验。值得...

    php文件上传进度条集合

    8. **Nginx或Apache模块**:某些服务器软件提供扩展模块,如Nginx的`HttpUploadProgressModule`,可以提供文件上传进度信息,但需要服务器配置支持。 9. **PHP的cURL库**:在cURL中,`curl_multi_info_read`函数...

    简单编写html文件加载nginx发布的视频,实现在线播放nginx发布的视频

    如果需要更高级的功能,比如播放列表或进度条,我们可以借助JavaScript库如Video.js或 Plyr。例如,引入Video.js库,并修改HTML代码: ```html &lt;!DOCTYPE html&gt; 在线视频学习 ...

    nginx-upload-progress模块源码

    1. **初始化阶段**:当客户端发起文件上传请求时,`nginx-upload-progress` 模块会在内存中创建一个进度条记录,并将其与请求关联起来。 2. **数据传输**:在文件传输过程中,模块会持续更新该记录,包含已上传的...

    php+apc上传进度条

    需要注意的是,APC的进度条功能在PHP 5.x版本中可用,但在PHP 7.x中已经被弃用,建议转向使用`sysvmsg`、`session`或者其他更现代的解决方案,如`php-fpm`的`fastcgi_finish_request`和`nginx`的`proxy_pass_request...

    nginx_uploadprogress_module-0.9.0

    该模块专门用于在Nginx服务器端实现文件上传的实时进度跟踪,让用户在上传过程中能够看到清晰的进度条,从而减轻用户对长时间等待的焦虑感。 1. **Nginx与UploadProgress Module** Nginx是一款高性能的HTTP和反向...

    uploadify3与struts2结合实现有进度条文件上传实例

    3) 修改服务器端可上传文件大小的限制 在文件 usr local nginx conf nginx conf中修改client max body size 毕竟是第一次用 不是很熟悉 希望有人发现问题可以交流一下"&gt;这是根据uploadify3 2结合struts2搭建的...

    nginx及其安装时依赖的rpm包

    安装完成后,你可以启动Nginx服务,通过`/etc/init.d/nginx start`(CentOS 6)或`systemctl start nginx`(CentOS 7及更高版本)。配置Nginx通常涉及编辑`/etc/nginx/nginx.conf`文件,设置虚拟主机、重定向规则等...

    nginx centos7离线安装包

    - `-h`:在安装过程中显示进度条。 - `-U`:表示升级已安装的包,如果还没有安装则进行新安装。 - `*.rpm`:这里表示匹配所有RPM包文件。 - `--nodeps`:跳过依赖性检查,可能造成系统不稳定的隐患,一般不推荐。 - ...

    Nginx上传文件全部缓存解决方案

    下面通过文字说明给大家详解Nginx上传文件全部缓存解决方案。 因为应用服务器(Jetty)里面实现了上传时写了进度条。经过缓存。就没法读取到进度了。此外,在Nginx处缓存文件,也降低了传输效率。 nginx采用1.5.6。 ...

    CentOS7 nginx离线安装gcc/pcre-devel/openssl-devel/zlib-devel包

    - `-Uvh`:`U`代表升级(update)已安装的包,`v`表示详细模式,`h`显示进度条。 - `.*.rpm`:匹配当前目录下所有.rpm文件,表示我们要安装所有的离线包。 - `--nodeps`:跳过依赖检查。这一步需要注意,因为缺少...

    多图片上传系统

    10. **负载均衡与性能优化**:当上传量较大时,可以使用负载均衡技术,如Nginx反向代理或分布式文件系统,以提高系统的扩展性和稳定性。 11. **错误处理与反馈**:良好的错误处理机制可以提供清晰的反馈信息,帮助...

    无惧上传类 v2.2 最终版

    3. **进度条显示**:提供文件上传进度的实时反馈,让用户了解文件上传的状态,增强交互体验。 4. **断点续传**:如果上传中断,如网络故障,无惧上传类可能具备断点续传功能,能从上次中断的地方继续上传,避免用户...

    php上传一个大的文件,文件的大小有没有限制.zip

    同时,为了提供用户体验,可以实现上传进度条功能,通过JavaScript与PHP交互获取当前上传进度。 6. 安全性考虑: 虽然允许大文件上传可以提高用户体验,但也增加了服务器被攻击的风险,如DoS(拒绝服务攻击)。...

    PHP大文件分片上传.rar 亲测ok

    服务器在接收到分片后,可以返回当前已接收的分片数量,前端据此更新进度条。 4. **文件合并**:当所有分片都成功上传后,服务器需要将它们合并回原始文件。这通常通过读取并追加所有分片到一个新文件来完成。PHP的...

    java上传大图片

    这可以通过监听文件上传的进度事件并在前端更新进度条来实现。 通过上述知识点,我们可以设计一个完整的Java大图片上传系统,包括客户端的文件选择、上传,服务器端的接收、验证、存储以及错误处理。同时,也可以...

    php简洁上传程序,做网盘非常实用

    10. **用户体验优化**:可以考虑增加进度条显示、多文件上传、文件预览等功能,提升用户在上传过程中的体验。 11. **权限设置**:正确设置文件和目录的权限是必要的,确保只有授权的用户可以访问或修改上传的文件。...

Global site tag (gtag.js) - Google Analytics