一、下载和安装nginx
1,进入下载页:http://nginx.org/en/download.html
2,找个自己适合的版本复制下载链接,这里的版本:
http://nginx.org/download/nginx-1.18.0.tar.gz
3,操作命令
#下载
wget http://nginx.org/download/nginx-1.18.0.tar.gz
#解压
tar -xvf nginx-1.18.0.tar.gz
cd nginx-1.18.0
# 安装依赖
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
#配置
./configure --with-http_ssl_module --with-threads --with-stream --with-http_slice_module
#编译
make
#安装
make install
二、配置
默认安装路径:/usr/local/nginx
1,在nginx.conf内加配置(该配置在http外面)
stream {
#换成你自己的sftp服务器
upstream sftp {
server 127.0.0.1:22;
server 127.0.0.2:22;
}
server {
listen 2802;
proxy_pass sftp;
}
}
2,启动nginx
三、注意
如果启动失败的话,可以看下日志,下面这个错:
unknown directive "stream" in /usr/local/nginx/conf/nginx.conf
在重新编译了之后通过nginx -s reload解决不了,需要重启nginx