diff options
author | Wolfy-J <[email protected]> | 2018-09-29 23:16:15 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-09-29 23:16:15 +0300 |
commit | 84d6405ddc232b83bf89594f98b7fcc78a2e8573 (patch) | |
tree | c80b18ed57ea9c3a38e667de71e6e6d328e8e94b | |
parent | 15e73179a20797badd20e2d65b8d4e29c3f8848a (diff) | |
parent | abe62c0675f839586312cff1c83d6a4cb31dd9d5 (diff) |
Merge branch 'master' into feature/1.3.0
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | README.md | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 52eccc47..c5e6b0c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ CHANGELOG ========= v1.2.2 (23.09.2018) +------ - new project directory structure - introduces DefaultsConfig, allows to keep config files smaller - better worker pool destruction while working with long running processes @@ -78,6 +78,18 @@ while ($req = $psr7->acceptRequest()) { } ``` +Configuration can be located in `.rr.yaml` file: + +```yaml +http: + address: 0.0.0.0:8080 + maxRequest: 200 + workers: + command: "php psr-worker.php" + pool: + numWorkers: 4 +``` + License: -------- The MIT License (MIT). Please see [`LICENSE`](./LICENSE) for more information. Maintained by [SpiralScout](https://spiralscout.com). |