1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00
ant-http/README.md

59 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

2016-12-07 13:10:53 +01:00
![Logo](https://github.com/lxsang/ant-http/raw/master/ant-logo.png)
# ant-http
2021-01-30 22:43:17 +01:00
[![Build Status](https://ci.iohub.dev/api/badges/lxsang/ant-http/status.svg)](https://ci.iohub.dev/lxsang/ant-http)
2018-03-19 11:59:12 +01:00
[![Build Status](https://travis-ci.org/lxsang/ant-http.svg?branch=master)](https://travis-ci.org/lxsang/ant-http)
2018-10-07 14:11:34 +02:00
A lightweight and portable HTTP/HTTPs web server written in C:
2021-02-05 03:25:46 +01:00
- New 1.0.6b version (BETA feature): Nonblocking event driven base server with configurable number of thread pool workers
2018-10-07 14:17:16 +02:00
- Initial goal is for embedded Linux, but can be used as general purpose web server.
2018-02-26 10:32:20 +01:00
- Support SSL via open SSL, database via Sqlite 3, web socket integrated
2019-03-01 11:09:03 +01:00
- It is also extensible via its extension mechanism that allows to extends the server capability.
2020-01-09 14:55:02 +01:00
- Page compression with gzip, deflate
2021-02-05 03:25:46 +01:00
2018-10-08 22:53:08 +02:00
## Plugins:
* CGI interface for external scripting language (e.g. PHP): [https://github.com/lxsang/antd-cgi-plugin](https://github.com/lxsang/antd-cgi-plugin)
2018-09-22 15:24:16 +02:00
* Lua extension [https://github.com/lxsang/antd-lua-plugin](https://github.com/lxsang/antd-lua-plugin): using Lua as serverside script
2018-10-08 23:26:19 +02:00
* Web terminal [https://github.com/lxsang/antd-wterm-plugin](https://github.com/lxsang/antd-wterm-plugin): plugin for using Unix terminal from the web via websocket
* Web VNC [https://github.com/lxsang/antd-wvnc-plugin](https://github.com/lxsang/antd-wvnc-plugin): Remote computer access using VNC protocol on the web (via websocket)
2018-09-22 20:25:51 +02:00
2018-09-22 20:26:19 +02:00
## Build from source
2018-09-22 20:25:51 +02:00
### build dep
* git
* make
* build-essential
### server dependencies
2019-11-08 16:22:44 +01:00
* libssl-dev (expecting openssl v1.1.1d, only support TLSv1.2 and TLSv1.3)
2018-09-22 20:25:51 +02:00
* libsqlite3-dev
2021-02-05 03:31:06 +01:00
* zlib-dev
2018-09-22 20:25:51 +02:00
### build
When all dependencies are installed, the build can be done with a few single command lines:
```bash
mkdir antd
cd antd
2019-11-19 17:48:59 +01:00
# Replace x.x.x by the version number
2018-10-03 11:21:28 +02:00
# build without plugin
2019-11-19 17:48:59 +01:00
wget -O- https://get.bitdojo.dev/antd | bash -s "x.x.x"
2019-11-13 13:40:52 +01:00
# or from the distribution tarball
tar xvzf antd-x.x.x.tar.gz
cd antd-x.x.x
./configure --prefix=/usr --enable-debug=yes
make
sudo make install
2018-09-22 20:25:51 +02:00
```
2019-11-14 18:48:44 +01:00
### Generate distribution
2019-11-13 11:48:54 +01:00
```sh
libtoolize
aclocal
autoconf
automake --add-missing
2019-11-13 13:05:04 +01:00
make distcheck
2019-11-19 17:48:59 +01:00
```
2019-12-15 12:10:06 +01:00
### To do
- remove static strings, replace it by configurations