openresty的安装部署
时间: 2023-12-04 15:04:10 浏览: 169
openresty最佳实践
以下是OpenResty的安装部署步骤:
1. 下载OpenResty源码包并解压缩:
```shell
wget https://openresty.org/download/openresty-1.19.3.1.tar.gz
tar -xzvf openresty-1.19.3.1.tar.gz
cd openresty-1.19.3.1/
```
2. 执行configure命令进行编译:
```shell
./configure --prefix=/usr/local/openresty
make
make install
```
3. 配置环境变量:
```shell
export PATH=$PATH:/usr/local/openresty/nginx/sbin
```
4. 启动OpenResty:
```shell
nginx
```
5. 验证OpenResty是否安装成功:
在浏览器中输入服务器的IP地址或域名,如果能够看到OpenResty的欢迎页面,则说明安装成功。
阅读全文