搜索

linux 下nginx模块的安装

发布网友 发布时间:2022-03-20 21:26

我来回答

3个回答

懂视网 时间:2022-03-21 01:48

产品型号:Thinkpad E15

系统版本:centos8

通过yum安装nginx服务

[root@xuegod63 ~]# yum install -y epel-release  #安装epel源

[root@xuegod63 ~]# yum install -y nginx  #安装nginx

[root@xuegod63 ~]# systemctl start nginx  #启动nginx

[root@xuegod63 ~]# iptables -F  #清空防火墙

打开浏览器,访问虚拟机的IP地址:http://192.168.1.63/

可以访问,成功,说明nginx安装成功了。

总结:

1. yum install -y epel-release

2. yum install -y nginx

3. systemctl restart nginx

热心网友 时间:2022-03-20 22:56

lua-nginx-mole和echo-nginx-mole都各自详细的安装步骤。
例如:
pushd nginx-1.6.2
./configure \
--prefix=/usr/local/nginx \
--sbin-path=/usr/sbin \
--with-http_ssl_mole \
--with-http_sub_mole \
--with-http_flv_mole \
--with-http_stub_status_mole \
--with-zlib=../zlib-1.2.5 \
--with-openssl=../openssl-1.0.1j \
--with-pcre=../pcre-8.36 \
--add-mole=/usr/local/echo-nginx-mole \
--add-mole=/usr/local/lua-nginx-mole
make;
make install;
popd

热心网友 时间:2022-03-21 00:14

nginx 模块安装是需要编译到nginx主程序中的
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top