nginx 代理ftp

Posted lshan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 代理ftp相关的知识,希望对你有一定的参考价值。

 

 

nginx1.9之后直接使用Stream配置就可以了,当然需要先安装stream模块

1.nginx 增加tcp

./configure --with-stream --with-pcre=../pcre-8.38
./configure --with-stream --without-http_rewrite_module

 

 

2.配置nginx.conf

http {
    ……
}

stream {    
    upstream sftp{
        hash $remote_addr consistent; 
        server 172.0.0.1:22 max_fails=3 fail_timeout=30s; 
    }
    server {
        listen 8080;
        proxy_connect_timeout 1s; 
        proxy_timeout 30s; 
        proxy_pass sftp;
    }
}

 

资料:

https://www.cnblogs.com/tinywan/p/6965467.html
https://zhangge.net/5037.html
https://blog.csdn.net/errizh/article/details/77936422

 

以上是关于nginx 代理ftp的主要内容,如果未能解决你的问题,请参考以下文章

nginx 代理的内网怎么用ftp传文件

Apache/nginx设置反向代理

Linux 安装及配置 Nginx + ftp 服务器

nginx和ftp搭建图片服务器

java Ftp上传创建多层文件的代码片段

170116centos6.4下nginx和ftp搭建图片服务器