Skip to content

Instantly share code, notes, and snippets.

@paulredmond
Created September 22, 2017 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulredmond/130ca521052ed4cf2415d286063136c7 to your computer and use it in GitHub Desktop.
Save paulredmond/130ca521052ed4cf2415d286063136c7 to your computer and use it in GitHub Desktop.
Nginx Unit Configuration Object for a PHP Project
{
"listeners": {
"*:8300": {
"application": "laravel-demo"
}
},
"applications": {
"laravel-demo": {
"type": "php",
"workers": 20,
"user": "www-data",
"group": "www-data",
"root": "/www/laravel/public",
"index": "index.php"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment