ubuntu shell安装openresty
作者:
Harlin_ | 来源:发表于
2017-10-24 15:30 被阅读15次#!/bin/bash
sudo apt-get update
sudo apt-get install -y libpcre3 libpcre3-dev
sudo apt-get install -y openssl libssl-dev
cd /tmp
version="1.11.2.4"
name=openresty-$version
file=$name.tar.gz
prefix=/usr/local/openresty
#echo $file
wget https://openresty.org/download/$file
tar zxvf $file
cd $name
./configure --with-http_stub_status_module --with-http_realip_module
make -j2
sudo make install
sudo ln -s $prefix/nginx/sbin/nginx /usr/local/sbin/openresty
本文标题:ubuntu shell安装openresty
本文链接:https://www.haomeiwen.com/subject/bixxpxtx.html
网友评论