summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6a3ef330..967c11e2 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,7 @@ Example:
```php
<?php
+// worker.php
ini_set('display_errors', 'stderr');
include "vendor/autoload.php";
@@ -84,7 +85,7 @@ 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"
+ workers.command: "php worker.php"
```
> Read more in [Wiki](https://github.com/spiral/roadrunner/wiki/PHP-Workers).