0%

Centos7-Openresty-Deploy

OpenResty

OpenResty(又称:ngx_openresty) 是一个基于 NGINX 的可伸缩的 Web 平台,由中国人章亦春发起,提供了很多高质量的第三方模块。OpenResty 是一个强大的 Web 应用服务器

安装方法

  • 通过源安装
  • 编译安装

源安装

  • 安装yum-utils
1
yum install yum-utils	
  • 添加openresty源repo
1
yum-config-manager --add-repo https://openresty.org/package/rhel/openresty.repo
  • 安装
1
yum install -y openresty
  • 启动
1
systemctl start openresty
  • 效果

  • 安装openresty命令行工具
1
yum install -y openresty-resty
  • 检查当前安装的openresty
1
/usr/local/openresty/bin/openresty -V