码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 代理ftp

时间:2019-11-13 15:56:09      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:zhang   htm   attribute   variable   代理   add   pcr   lock   tcp   

 

 

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

标签:zhang   htm   attribute   variable   代理   add   pcr   lock   tcp   

原文地址:https://www.cnblogs.com/lshan/p/11849832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!