-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
83615ec
commit 8ee0907
Showing
9 changed files
with
629 additions
and
2 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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
version: "3" | ||
|
||
server: | ||
command: "php public/index.php" | ||
env: | ||
- APP_RUNTIME: Baldinof\RoadRunnerBundle\Runtime\Runtime | ||
|
||
http: | ||
address: 0.0.0.0:8080 | ||
ssl: | ||
address: :443 | ||
cert: certs/draw.com.crt | ||
key: certs/draw.com.key | ||
pool: | ||
debug: true | ||
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 |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
version: "3" | ||
|
||
server: | ||
command: "php public/index.php" | ||
env: | ||
- APP_RUNTIME: Baldinof\RoadRunnerBundle\Runtime\Runtime | ||
|
||
http: | ||
address: 0.0.0.0:8080 | ||
pool: | ||
debug: false | ||
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 | ||
|
||
# Uncomment to use metrics integration | ||
# rpc: | ||
# listen: tcp://127.0.0.1:6001 | ||
|
||
# Uncomment to use metrics integration | ||
# metrics: | ||
# # prometheus client address (path /metrics added automatically) | ||
# address: "0.0.0.0:9180" |
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
Oops, something went wrong.