OpenResty® 是一个基于 Nginx 与 Lua 的高性能 Web 平台,其内部集成了大量精良的 Lua 库、第三方模块以及大多数的依赖项。用于方便地搭建能够处理超高并发、扩展性极高的动态 Web 应用、Web 服务和动态网关。
一、准备
添加yum仓库的源
script
1 wget -O /etc/yum.repos.d/openresty.repo https://openresty.org/package/centos/openresty.repo二、安装
执行安装命令
script
1 yum install -y openresty三、检查
执行下面命令查看帮忙来确定安装是否正确
script
1 openresty -h
如果输出类似下面的的话就是安装好了
1
2
3
4
5
6
7
8
9
10
11
12
13
14 nginx version: openresty/1.15.8.2
Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives]
Options:
-?,-h : this help
-v : show version and exit
-V : show version and configure options then exit
-t : test configuration and exit
-T : test configuration, dump it and exit
-q : suppress non-error messages during configuration testing
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /usr/local/openresty/nginx/)
-c filename : set configuration file (default: conf/nginx.conf)
-g directives : set global directives out of configuration file
好了,没有了
本站版权使用署名-非商业性使用-禁止演绎 4.0 国际,转载请保留原文链接及作者。