diff options
-rw-r--r-- | .rr.yaml | 3 | ||||
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | README.md | 7 |
3 files changed, 11 insertions, 5 deletions
@@ -35,7 +35,10 @@ http: # HTTP service provides HTTP2 transport http2: + # enable HTTP/2, only with TSL enabled: true + + # max transfer channels maxConcurrentStreams: 128 # max POST request size, including file uploads in MB. diff --git a/CHANGELOG.md b/CHANGELOG.md index 4449eb1d..c125cb30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ CHANGELOG ========= +v1.4.4 (25.06.2019) +------------------- +- added "headers" service with the ability to specify request, response and CORS headers by @ovr +- added FastCGI support for HTTP service by @ovr +- added ability to include multiple config files using `include` directive in the configuration + v1.4.3 (03.06.2019) ------------------- - fixed dependency with Zend Diactoros by @dkuhnert @@ -73,11 +73,8 @@ Configuration can be located in `.rr.yaml` file ([full sample](https://github.co ```yaml http: - address: 0.0.0.0:8080 - workers: - command: "php psr-worker.php" - pool: - numWorkers: 4 + address: 0.0.0.0:8080 + workers.command: "php psr-worker.php" ``` > Read more in [Wiki](https://github.com/spiral/roadrunner/wiki/PHP-Workers). |