./nginx -V
mv nginx nginx.back
tar -zxvf nginx-1.24.0.tar.gz
./configure --prefix=/usr/local/project/nginx --with-http_ssl_module --with-http_stub_status_module --with-http_gzip_static_module --with-stream=dynamic
make
make install
cp -rf ./nginx.conf /usr/local/project/nginx/conf
load_module /usr/local/project/nginx/modules/ngx_stream_module.so;
./nginx -t
./nginx