使用背景:使用stream模块转发应用服务器sftp连接请求。
1.解压nginx压缩包
tar -zxvf nginx-1.16.1.tar.gz
2.指定配置项,–prefix表示安装路径,–with–stream表示添加流模块
./configure —prefix=/usr/local/nginx–my–stream/nginx1.16 –with–stream –with-http_stub_status_module –with-http_ssl_module
5.添加流模块,与http模块同级
stream {
upstream sftp_zj {
hash $remote_addr consistent;
server hz-sftp1.zj.com:2122 max_fails=3 fail_timeout=60s;
#sftp服务器和端口
}
#sftp代理
server {
listen 2122;
proxy_connect_timeout 10s;
proxy_timeout 10s;
proxy_pass sftp_zj;
}
}
6.启动nginx
./nginx –c /usr/local/nginx–my–stream/nginx1.16/conf/nginx.conf
原文地址:https://blog.csdn.net/MAX_VALUE/article/details/128372786
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_16635.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!