Skip to content

Instantly share code, notes, and snippets.

@nobu-sh
Forked from WebSofter/ecosystem.config.json
Created September 22, 2021 23:17
Show Gist options
  • Save nobu-sh/e59e8812ab3b5a55e4f2631e76cd6b9f to your computer and use it in GitHub Desktop.
Save nobu-sh/e59e8812ab3b5a55e4f2631e76cd6b9f to your computer and use it in GitHub Desktop.
Run laravel artisian serve script via pm2
{
"apps": [{
"name": "laravel-app",
"script": "artisan",
"args": ["serve", "--host=0.0.0.0", "--port=3333"],
"instances": "1",
"wait_ready": true,
"autorestart": false,
"max_restarts": 1,
"interpreter" : "php",
"watch": true,
"error_file": "log/err.log",
"out_file": "log/out.log",
"log_file": "log/combined.log",
"time": true
}]
}
1. install Node and PM2 module
2. Add file ecosystem.config.json to root folder of laravel project
2. Run command:
$ pm2 start ecosystem.config.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment