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
- Host: GitHub
- URL: https://github.com/pashinov/http-server
- Owner: pashinov
- License: mit
- Created: 2017-11-27T12:14:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-10T13:16:59.000Z (almost 8 years ago)
- Last Synced: 2025-01-29T03:26:26.402Z (over 1 year ago)
- Topics: boost-asio, codecov, cpp11, travis-ci
- Language: C++
- Homepage:
- Size: 141 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```