Created
October 8, 2020 21:46
-
-
Save nixoncode/3266815f119e2a3b705e7cd5a2b6014a to your computer and use it in GitHub Desktop.
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
# http service configuration. | |
http: | |
# http host to listen. | |
address: 0.0.0.0:8080 | |
# http worker pool configuration. | |
workers: | |
# php worker command - point to the entry point | |
command: "php public/index.php" | |
# worker pool configuration(for dev env) | |
pool: | |
# number of workers to be serving - will auto refresh in development | |
numWorkers: 1 | |
# maximum jobs per worker, 0 - unlimited. | |
maxJobs: 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment