Skip to content

Instantly share code, notes, and snippets.

@sajjadanwar0
Forked from WebSofter/ecosystem.config.json
Created October 3, 2021 06:50
Show Gist options
  • Save sajjadanwar0/b3ddf9dcca3231fb6c4a872ecc10e60c to your computer and use it in GitHub Desktop.
Save sajjadanwar0/b3ddf9dcca3231fb6c4a872ecc10e60c 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