nginx配置stream模块代理并开启⽇志配置前⾔
nginx 1.20.1
nginx从1.9.0开始,新增加了⼀个stream模块
确保nginx 安装时开启stream模块
./configure \
…… \
--with-stream \
--with-stream_ssl_module \
修改f
#增加stream配置,开启stream模块
stream {
log_format basic '$remote_addr [$time_local] 'nginx 配置文件
'$protocol $status $bytes_sent $bytes_received '
'$session_time';
access_log logs/stream-access.log basic buffer=32k;
server{
listen 6666;
proxy_pass 10.11.11.11:7777;
}
}
重新加载配置
# 测试⼀下配置⽂件写的是否有问题
shell> nginx -t
# 配置⽂件没问题的话,重新加载配置
shell> nginx -s reload
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论