Nginx配置 ngx_http_proxy_connect_module 模块及安装

1、配置完互联网yum源后,安装相关依赖软件包
[root@server soft]# yum install -y patch pcre pcre-devel make gcc gcc-c++ openssl openssh
[root@server soft]# yum install openssl*


2、解压缩软件,加载模块
[root@server soft]# ls
nginx-1.20.2  nginx-1.20.2.tar.gz  ngx_http_proxy_connect_module  ngx_http_proxy_connect_module.tar.gz
[root@server soft]# ll
总用量 1340
drwxr-xr-x 8 1001 1001     158 11月 16 2021 nginx-1.20.2
-rw-r--r-- 1 root root 1062124 11月 16 2021 nginx-1.20.2.tar.gz
drwxr-xr-x 6 root root     140 10月 30 2023 ngx_http_proxy_connect_module
-rw-r--r-- 1 root root  304851 2月   8 14:14 ngx_http_proxy_connect_module.tar.gz
[root@server soft]# mv ngx_http_proxy_connect_module nginx-1.20.2
[root@server soft]# cd nginx-1.20.2/
[root@server nginx-1.20.2]# ls
auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  man  ngx_http

你可能感兴趣的:(nginx,运维)