From d32df84f2ecd23074e222ab1c83f7846e4a0efb6 Mon Sep 17 00:00:00 2001 From: Xuan Sang LE Date: Wed, 10 Mar 2021 16:26:28 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7f07543..c4c287b 100644 --- a/README.md +++ b/README.md @@ -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)