1
0
mirror of https://github.com/lxsang/ant-http synced 2024-06-29 11:59:48 +02:00

Update README.md

This commit is contained in:
Xuan Sang LE 2021-03-10 16:26:28 +01:00 committed by GitHub
parent b28f1a3fa0
commit d32df84f2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,12 +3,16 @@
[![Build Status](https://ci.iohub.dev/api/badges/lxsang/ant-http/status.svg)](https://ci.iohub.dev/lxsang/ant-http)
[![Build Status](https://travis-ci.org/lxsang/ant-http.svg?branch=master)](https://travis-ci.org/lxsang/ant-http)
A lightweight and portable HTTP/HTTPs web server written in C:
- Nonblocking event driven base server with configurable number of thread pool workers
A lightweight HTTP/HTTPs (1.1) web server written in C:
- Nonblocking event driven base server with configurable number of thread pool workers.
- Initial goal is for embedded Linux, but can be used as general purpose web server.
- Support SSL via open SSL, database via Sqlite 3, web socket integrated
- Support:
- SSL via open SSL,
- basic API database via Sqlite 3,
- web socket,
- reverse proxy.
- It is also extensible via its extension mechanism that allows to extends the server capability.
- Page compression with gzip, deflate
- Page compression with gzip, deflate, cache control
## Plugins:
* CGI interface for external scripting language (e.g. PHP): [https://github.com/lxsang/antd-cgi-plugin](https://github.com/lxsang/antd-cgi-plugin)