https://github.com/bytesclub/serverx
A HTTP/HTTPS Web Server Handler by (C) Bytes Club
https://github.com/bytesclub/serverx
Last synced: 12 months ago
JSON representation
A HTTP/HTTPS Web Server Handler by (C) Bytes Club
- Host: GitHub
- URL: https://github.com/bytesclub/serverx
- Owner: BytesClub
- License: other
- Created: 2017-05-20T04:58:18.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-28T18:11:09.000Z (about 8 years ago)
- Last Synced: 2025-04-15T01:51:30.706Z (about 1 year ago)
- Language: C
- Size: 184 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
serverX
================
[](https://raw.githubusercontent.com/BytesClub/serverX/master/LICENSE)
[](https://www.codacy.com/app/BytesClub/serverX?utm_source=github.com&utm_medium=referral&utm_content=BytesClub/serverX&utm_campaign=Badge_Grade)
[](https://github.com/BytesClub/serverX/issues)
[](https://github.com/BytesClub/serverX/pulls)
[](https://github.com/BytesClub/serverX/releases)
[](mailto:bytes-club@googlegroups.com)
[](https://gitter.im/Bytes_Club/General)

A HTTP/HTTPS Web Server Handler by (C) Bytes Club
Installation
================
* Install dependencies and toolchain
```
$ apt-get update
$ apt-get install build-essential zlib1g-dev php7.0-cgi
```
* Get Source Code
```
$ apt-get install git
$ git clone https://github.com/BytesClub/serverX.git
$ cd serverX
```
* Build program _(Make sure current directory contains a Makefile)_
```
$ make
```
Testing
================
* Open terminal and go to Source directory
```
$ make test
```
* Open any browser and go to following address
```
http://localhost:8080
```
Contributing
================
* Reference: [Contributing Guidelines](.github/CONTRIBUTING.md)
* Every commit must follow the following standard:
```
Shortlog: Commit Message
commit body
Fixes: #
[Closes: ]
Signed-off-by: [Your name]
```
* ### Contributing in GitHub:
* Fork the project in your account and clone to your local machine.
* Create a branch abiding following format:
```
/Issue-
```
* Update with latest at **master** branch.
```
$ git remote add upstream https://github.com/BytesClub/serverX.git
$ git fetch upstream
$ git checkout [-b]
$ git rebase upstream/master --strategy recursive -X theirs
$ git push origin [-u]
```
* Make changes and commit them according to the guideline provided.
* **Do not commit anything to the master branch.**
* Create a Pull Request to the Base Repository.
* ### Contributing via Patches:
* Install `git-email` package on top of `git-core` package already installed and configure accordingly.
* Create a branch abiding following format:
```
/Issue-
```
* Update with latest at **master** branch.
```
$ git rebase origin/master --strategy recursive -X theirs
```
* Make changes and commit them according to the guideline provided.
* **Do not commit anything to the master branch.**
* Format patch from the commits you've created.
```
$ git format-patch - --cc="Progyan Bhattacharya " -o ../serverX-patches
```
* Send email to `bytes-club@googlegroups.com` containing the patch.
```
$ git send-email ../serverX-patches/ --to="bytes-club@googlegroups.com" --subject="[Patch] BytesClub: serverX: "
```
Legal Notice
================
Copyright 2017 The serverX Authors
Maintainer: Bytes Club (https://bytesclub.github.io)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.