NGINX通過Stream轉發ftp請求


一、NGINX 1.9之前,需要安裝第三方的TCP插件:

http://www.cnblogs.com/i-blog/p/6165378.html

二、1.9之后直接使用Stream配置就可以了,當然需要先安裝stream模塊:

1.nginx 增加tcp
./configure --with-stream --with-pcre=../pcre-8.38
./configure --with-stream --without-http_rewrite_module
2.配置nginx.conf


stream { 
upstream sftp { 
hash $remote_addr consistent; 
server 127.0.0.1:22 max_fails=3 fail_timeout=30s; 

server { 
listen 90; 
proxy_connect_timeout 1s; 
proxy_timeout 3s; 
proxy_pass sftp; 

}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM