Skip to content

Latest commit

 

History

History
65 lines (58 loc) · 1.48 KB

README.md

File metadata and controls

65 lines (58 loc) · 1.48 KB

kangle

kangle logo

kangle is a light, high-performance web server/reverse proxy.include a http manage console. Full support access control. memory/disk cache. and more kangle web server features

  • fastcgi/http/http2 protocol upstream
  • upstream keep alive
  • memory and disk cache.
  • full request/response access control
  • easy used web manage console.
  • each virtualhost can run seperate process and user.
  • xml config file
  • on the fly gzip/br2
  • dso extend.
  • http3 support.

build from source code

kangle use cmake to build.

git clone https://gitee.com/keengo/kangle
cd kangle
git submodule update --init --recursive
mkdir build
cd build
cmake ..
make

build with http3 support


git clone https://github.com/litespeedtech/lsquic
cd lsquic && git submodule update --init --recursive
cd ..
git clone https://github.com/google/boringssl
git clone https://gitee.com/keengo/kangle
cd kangle
git submodule update --init --recursive
mkdir build
cd build
cmake .. -DBORINGSSL_DIR=../../boringssl -DLSQUIC_DIR=../../lsquic
make

full stack test

note kangle test need golang support

build test

cd test
./build.sh

run test

./test.sh

cmake options

brotli support.

cmake .. -DENABLE_BROTLI=ON

build release

cmake .. -DCMAKE_BUILD_TYPE=Release

use boringssl

cmake .. -DBORINGSSL_DIR=boringssl_dir

build as proxy server

cmake .. -DHTTP_PROXY=ON

Documentation