Skip to content

Instantly share code, notes, and snippets.

@Anggasayogo
Forked from WebSofter/ecosystem.config.json
Created March 19, 2023 05:13
Show Gist options
  • Save Anggasayogo/3f7c309f9c4f73e0e95b89ad3700fe07 to your computer and use it in GitHub Desktop.
Save Anggasayogo/3f7c309f9c4f73e0e95b89ad3700fe07 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