赞
踩
https://blog.csdn.net/wd520521/article/details/110129872
https://blog.csdn.net/wd520521/article/details/136675643
- #在nginx安装目录sbin目录下执行
- ./nginx -V
- #nginx解压目录下执行
- nginx.exe -V
vim /usr/local/nginx/conf/nginx.conf
- stream {
-
- upstream sftpurl{ #可自定义命名
- hash $remote_addr consistent;
- server sftp服务器的ip:sftp服务器的端口 max_fails=3 fail_timeout=60s;
- }
- #sftp代理
- server {
- listen 21000; #随意设置本地的监听端口(需要在安全组中开放)
- proxy_connect_timeout 300s;
- proxy_timeout 300s;
- proxy_pass sftpurl;
- }
- }
./nginx -t
nginx -t 如果提示有success 代表配置没问题。
打开配置文件nginx.conf
- stream {
-
- upstream sftpurl{ #可自定义命名
- hash $remote_addr consistent;
- server sftp服务器的ip:sftp服务器的端口 max_fails=3 fail_timeout=60s;
- }
- #sftp代理
- server {
- listen 21000; #随意设置本地的监听端口(需要在安全组中开放)
- proxy_connect_timeout 300s;
- proxy_timeout 300s;
- proxy_pass sftpurl;
- }
- }
nginx.exe -t
nginx,exe -t 如果提示有success 代表配置没问题。
在其他服务器使用stfp指定账号登陆,注意我们访问的是21000端口,而不是原来sftp的端口
- sftp -P21000 sftp账号@代理服务器ip
-
- sftp -P21000 xxx@xx.xx.xx.xx
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。