OpenResty 下载与安装
前言
下载地址:http://openresty.org/cn/download.html
安装教程
官方安装教程链接:http://openresty.org/cn/linux-packages.html
安装
# 添加仓库 sudo yum install -y yum-utils sudo yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo # 安装 openresty sudo yum install -y openresty # 安装 openresty 命令行工具 sudo yum install -y openresty-resty
默认安装到 /usr/local/openresty
命令
/usr/local/openresty/bin/openresty 映射到 /usr/local/openresty/nginx/sbin/nginx ,所以可以通过 openresty 启动,也可以通过 nginx 启动
# 进入 openResty 安装目录下的bin目录 /usr/local/openresty/bin ./openresty # 由于 openResty 基于 nginx 开发,配置 openResty 只需要配置 nginx 即可,/usr/local/openresty/nginx ./nginx
访问测试