nginx安装upload和MD5,echo模块

简介:

由于工作需要,需要写一个可以自动升级的脚本来上报设备的一些基本信息,前期是每次都去下文件来做比较后去升级脚本,这样比较浪费流量,所以想到了在线上做MD5校验然后再决定是否需要下载脚本来升级,所以在网上查了下nginx关于md5校验配置;

由于nginx不支持MD5模块,echo模块,上传和下载模块,所以需要下载安装,步骤如下:

下载nginx和相关模块:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mkdir  /package
cd  /package
wget http: //nginx .org /download/nginx-1 .8.1. tar .gz
wget -O filr-md5-master.zip https: //github .com /cfsego/file-md5/archive/master .zip
wget http: //nchc .dl.sourceforge.net /project/pcre/pcre/8 .37 /pcre-8 .37. tar .gz
wget http: //prdownloads .sourceforge.net /libpng/zlib-1 .2.11. tar .gz
wget wget https: //github .com /openresty/echo-nginx-module/archive/v0 .60. tar .gz
tar  xf nginx-1.8.1. tar .gz
unzip filr-md5-master.zip
tar  xf pcre-8.37. tar .gz
tar  xf zlib-1.2.11. tar .gz
tar  xf v0.60. tar .gz
然后安装nginx,已安装的安装下模块就好
如果没有下载到可以到我的云地址去下载
https: //pan .baidu.com /s/1o9tvhkm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cd  /package/nginx-1 .8.1/
. /configure  --prefix= /usr/local/nginx  \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_gzip_static_module \
--with-pcre --with-http_realip_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_sub_module \
--with-http_stub_status_module \
--with-pcre= /package/pcre-8 .37 \
--with-zlib= /package/zlib-1 .2.11 \
--add-module= /package/echo-nginx-module-0 .60 \
--add-module= /package/file-md5-master  \
--add-module= /package/nginx-upload-module-2 .2 \
--with-http_secure_link_module
 
make  &&  make  install

如果在安装的时候缺少什么包直接yum安装就好了

然后开始配置nginx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
mkdir -p /usr/local/nginx/html/test
echo testFile >/usr/local/nginx/html/test/testFile
 
     server {
         listen       80; 
         server_name  localhost;
         root   html;
         location /test {
             add_header    Content-MD5    $file_md5;                          
        
/usr/local/nginx/sbin/nginx -s reload
这样直接访问
 
[root@hxy nginx]# curl  -I localhost/test/testFile
HTTP/1.1 200 OK
Server: nginx/1.8.1
Date: Tue, 09 Jan 2018 06:15:59 GMT
Content-Type: text/plain
Content-Length: 9
Last-Modified: Tue, 09 Jan 2018 06:15:54 GMT
Connection: keep-alive
ETag:  "5a545e1a-9"
Content-MD5: d43a6ecaa892a1962398ac9170ea9bf2
Accept-Ranges: bytes
 
就能出MD5了
 
还有就是直接访问就能出MD5的需要echo
http {
     server {
         listen       80;
         server_name  localhost;
         root   html;
         location /test {
#            add_header    Content-MD5    $file_md5;
              if  ( $arg_md5 ~*  "true"  )
              {
                    echo $file_md5;
              }
         }
}
}
/usr/local/nginx/sbin/nginx -s reload

然后查看下结果

1
2
# curl  localhost/test/testFile?md5=true
d43a6ecaa892a1962398ac9170ea9bf2

这就是文件的MD5值了

本文转自  Forande  51CTO博客,原文链接:http://blog.51cto.com/853056088/2059229

相关文章
|
2月前
|
应用服务中间件 网络安全 nginx
轻松上手Nginx Proxy Manager:安装、配置与实战
Nginx Proxy Manager (NPM) 是一款基于 Nginx 的反向代理管理工具,提供直观的 Web 界面,方便用户配置和管理反向代理、SSL 证书等。本文档介绍了 NPM 的安装步骤,包括 Docker 和 Docker Compose 的安装、Docker Compose 文件的创建与配置、启动服务、访问 Web 管理界面、基本使用方法以及如何申请和配置 SSL 证书,帮助用户快速上手 NPM。
370 1
|
3月前
|
负载均衡 应用服务中间件 Linux
nginx学习,看这一篇就够了:下载、安装。使用:正向代理、反向代理、负载均衡。常用命令和配置文件,很全
这篇博客文章详细介绍了Nginx的下载、安装、配置以及使用,包括正向代理、反向代理、负载均衡、动静分离等高级功能,并通过具体实例讲解了如何进行配置。
197 4
nginx学习,看这一篇就够了:下载、安装。使用:正向代理、反向代理、负载均衡。常用命令和配置文件,很全
|
3月前
|
应用服务中间件 Linux nginx
Mac os 安装 nginx 教程(success)
这篇文章是关于如何在Mac OS系统上使用Homebrew安装nginx及其依赖,并解决安装过程中可能出现的权限问题。
275 0
Mac os 安装 nginx 教程(success)
|
3月前
|
Ubuntu 搜索推荐 应用服务中间件
Nginx安装与使用
Nginx安装与使用
|
3月前
|
负载均衡 算法 应用服务中间件
Nginx安装及配置详解
Nginx安装及配置详解
|
3月前
|
应用服务中间件 程序员 开发工具
mac下安装nginx
mac下安装nginx
|
3月前
|
应用服务中间件 Linux nginx
CentOS7安装Nginx
CentOS7安装Nginx
|
3月前
|
Ubuntu Unix 应用服务中间件
Ubuntu16.04.1 安装Nginx
Ubuntu16.04.1 安装Nginx
|
3月前
|
网络协议 应用服务中间件 Linux
Linux安装nginx
Linux安装nginx
|
3月前
|
应用服务中间件 nginx C++
nginx的cgi模块
nginx的cgi模块
55 0