-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
914 additions
and
582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,31 @@ | ||
include: | ||
- .rr.yaml | ||
server: | ||
command: "php bin/console baldinof:roadrunner:worker" | ||
|
||
http: | ||
address: 0.0.0.0:8080 | ||
middleware: [ "static", "gzip" ] | ||
uploads: | ||
forbid: [ ".php", ".exe", ".bat" ] | ||
static: | ||
dir: "public" | ||
forbid: [ ".php", ".htaccess" ] | ||
|
||
logs: | ||
mode: development | ||
channels: | ||
http: | ||
level: debug # Log all http requests, set to info to disable | ||
server: | ||
level: info # Everything written to worker stderr is logged | ||
mode: raw | ||
metrics: | ||
level: debug | ||
|
||
reload: | ||
enabled: true | ||
interval: 1s | ||
patterns: [".php"] | ||
services: | ||
http: | ||
dirs: ["."] | ||
recursive: true | ||
enabled: true | ||
interval: 1s | ||
patterns: [".php", ".yaml"] | ||
services: | ||
http: | ||
dirs: ["."] | ||
recursive: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
server: | ||
command: "php bin/console baldinof:roadrunner:worker" | ||
|
||
http: | ||
address: "0.0.0.0:8080" | ||
uploads: | ||
forbid: [".php", ".exe", ".bat"] | ||
workers: | ||
command: "php bin/console baldinof:roadrunner:worker" | ||
relay: "unix://var/roadrunner.sock" | ||
static: | ||
dir: "public" | ||
forbid: [".php", ".htaccess"] | ||
address: 0.0.0.0:8080 | ||
middleware: [ "static", "gzip" ] | ||
uploads: | ||
forbid: [ ".php", ".exe", ".bat" ] | ||
static: | ||
dir: "public" | ||
forbid: [ ".php", ".htaccess" ] | ||
|
||
logs: | ||
mode: production | ||
channels: | ||
http: | ||
level: debug # Log all http requests, set to info to disable | ||
server: | ||
level: info # Everything written to worker stderr is logged | ||
mode: raw | ||
metrics: | ||
level: error |
Oops, something went wrong.