https://github.com/ericr/dying_web_server
Test how your app handles stuff going down
https://github.com/ericr/dying_web_server
Last synced: 5 months ago
JSON representation
Test how your app handles stuff going down
- Host: GitHub
- URL: https://github.com/ericr/dying_web_server
- Owner: EricR
- Created: 2013-08-07T22:27:21.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-08T15:33:18.000Z (almost 13 years ago)
- Last Synced: 2023-12-13T16:09:29.832Z (over 2 years ago)
- Homepage:
- Size: 1.3 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Dying Web Server
==============
Test how your app handles your services going down. A small web server written in Go that dies after a certain number of connections are made to it.
Configuration
-------------
You can configure it via flags, where `p` is the port it should run on and `m` is the max number of connections it should ever handle.
Example
------
The following will run a web server on port 8080 and kill itself after 3 successful connections.
```
./dying_web_server -p 8080 -m 3
```