文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

nginx代理下载服务器文件的方法

2023-06-29 02:05

关注

今天小编给大家分享一下nginx代理下载服务器文件的方法的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

主旨

Nginx是一款轻量级的web服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,在BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力在同类型的网页服务器中表现较好。

环境

linux服务器
nginx软件

nginx安装

1、安装编译工具及库文件

‍[yunweijia@localhost jier]$ sudo yum -y install make zlib zlib-devel gcc-c++ libtool  openssl openssl-devel

2、**安装 PCRE

[yunweijia@localhost jier]$ cd /usr/local/src/[yunweijia@localhost src]$ sudo wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz  下载[yunweijia@localhost src]$ sudo tar xf pcre-8.35.tar.gz  # 解压[yunweijia@localhost src]$ cd pcre-8.35/[yunweijia@localhost pcre-8.35]$ sudo ./configure  # 编译[yunweijia@localhost pcre-8.35]$ sudo make && make instal  # 安装[yunweijia@localhost pcre-8.35]$ pcre-config --version  # 版本查看8.32[yunweijia@localhost pcre-8.35]$

3、安装nginx

[yunweijia@localhost jier]$ pwd/home/yunweijia/jier[yunweijia@localhost jier]$ lsnginx-1.14.2.tar.gz[yunweijia@localhost jier]$ tar xf nginx-1.14.2.tar.gz [yunweijia@localhost jier]$ cd nginx-1.14.2/[yunweijia@localhost nginx-1.14.2]$ sudo ./configure --prefix=/home/yunweijia/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.35[yunweijia@localhost nginx-1.14.2]$ sudo make && make install

4、配置调整

[yunweijia@localhost nginx-1.14.2]$ cd /home/yunweijia/nginx/[yunweijia@localhost nginx]$ lsconf  html  logs  sbin[yunweijia@localhost nginx]$ vim conf/nginx.conf# 以下内容是配置文件的第二行进行配置user root;# 以下配置是唉server中进行新增        location ~* (.*.txt) {  # 代理后缀为txt的            add_header  Content-Type    "application/octet-stream";            if ( $args ~ ^filename=(.*) ) {                add_header  Content-Disposition "attachment; filename=$1";            }            yunweijia /home/yunweijia/txt/;  # 在这个目录下        }

5、启动nginx

[yunweijia@localhost nginx]$ sudo ./sbin/nginx -t  # 检查配置nginx: the configuration file /home/yunweijia/nginx/conf/nginx.conf syntax is oknginx: configuration file /home/yunweijia/nginx/conf/nginx.conf test is successful[yunweijia@localhost nginx]$ sudo ./sbin/nginx  # 启动

6、验证

在"/home/yunweijia/txt/"中新建文件,测试下载。

下载url为:http://ip地址:端口号/文件名

[yunweijia@localhost nginx]$ mkdir /home/yunweijia/txt/[yunweijia@localhost nginx]$ cd /home/yunweijia/txt/[yunweijia@localhost txt]$ ls[yunweijia@localhost txt]$ echo ceshi > 1.txt[yunweijia@localhost txt]$ cat 1.txt ceshi[yunweijia@localhost txt]$

浏览器输入地址为:http://192.168.112.130/1.txt

文件下载成功。

以上就是“nginx代理下载服务器文件的方法”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-服务器
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯