NGINX 代理转发 FTP/SFTP


写在http{}以外
stream {
    upstream ftp{
        hash $remote_addr consistent;
        server 10.14.168.32:21;
    }
    
    server {
        listen 65521;
        proxy_connect_timeout 300s;
        proxy_timeout 300s;
        proxy_pass ftp;
   }
}

 // 转发本地65521端口至10.14.168.32的21端口,也可利用firewall和iptables转发


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM