jay's blog
linux 安装 tengine

老版chrome下载: https://www.slimjetbrowser.com/chrome/files/90.0.4430.72/googlechrome.dmg

软件源码准备

编译 & 安装

cd /tmp/tengine
unzip pcre-8.44.zip
tar -zxf zlib-1.2.11.tar.gz
tar -zxf openssl-1.1.1l.tar.gz
tar -zxf tengine-2.3.3.tar.gz


cd tengine-2.3.3 

# configure
./configure --prefix=/opt/tengine-2.3.3 --with-pcre=../pcre-8.44 --with-zlib=../zlib-1.2.11 --with-openssl=../openssl-1.1.1l
./configure --prefix=/opt/tengine-2.3.3 --with-pcre=../pcre-8.45 --with-zlib=../zlib-1.3.1 --with-openssl=../openssl-1.1.1l --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre   --with-stream --with-stream=dynamic --with-stream_ssl_module --with-stream_realip_module

#make & install
make
make install

最后修改于 2021-09-12