mirror of
https://github.com/EtherDream/jsproxy
synced 2024-11-22 09:58:46 +00:00
16 lines
270 B
Bash
16 lines
270 B
Bash
|
#
|
||
|
curl -O https://openresty.org/download/openresty-1.15.8.1rc1.tar.gz
|
||
|
tar zxvf openresty-*
|
||
|
cd openresty-*
|
||
|
|
||
|
./configure \
|
||
|
--with-http_v2_module \
|
||
|
--with-http_ssl_module \
|
||
|
--with-pcre-jit \
|
||
|
--prefix=/home/jsproxy/openresty
|
||
|
|
||
|
make
|
||
|
make install
|
||
|
|
||
|
cd ..
|
||
|
rm -rf openresty-*
|