An open API service indexing awesome lists of open source software.

https://github.com/pashinov/http-server

The simple HTTP Server
https://github.com/pashinov/http-server

boost-asio codecov cpp11 travis-ci

Last synced: about 1 year ago
JSON representation

The simple HTTP Server

Awesome Lists containing this project

README

          

HTTP Server
-----------

[![Build Status][travis-badge]][travis-link]
[![codecov][codecov-badge]][codecov-link]
[![release][release-badge]][release-link]
[![MIT License][license-badge]][license-link]

[travis-badge]: https://travis-ci.org/pashinov/http-server.svg?branch=master
[travis-link]: https://travis-ci.org/pashinov/http-server
[codecov-badge]: https://codecov.io/gh/pashinov/http-server/branch/master/graph/badge.svg
[codecov-link]: https://codecov.io/gh/pashinov/http-server
[release-badge]: https://img.shields.io/badge/release-v1.0.1-blue.svg
[release-link]: https://github.com/pashinov/http-server/releases
[license-badge]: https://img.shields.io/badge/License-MIT-yellow.svg
[license-link]: https://github.com/pashinov/http-server/blob/master/LICENSE

http-server is a simple asynchronous http server running as linux daemon.

To build and install the application:
```
$ mkdir build && cd build
$ cmake [-DCMAKE_BUILD_TYPE=Release|Debug] ..
$ make
$ sudo make install
```

To run the application:
```
$ /etc/init.d/http-server start
```

To stop the application:
```
$ /etc/init.d/http-server stop
```

To check status the application:
```
$ /etc/init.d/http-server status
```