Skip to content

Instantly share code, notes, and snippets.

@WebSofter
Created October 28, 2019 13:47
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save WebSofter/4b35957c9bd32327c11b176572fb0577 to your computer and use it in GitHub Desktop.
Save WebSofter/4b35957c9bd32327c11b176572fb0577 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
@malikkurosaki
Copy link

thank

@mahkassem
Copy link

mahkassem commented Oct 6, 2021

Hi @WebSofter,
Thank you for sharing the knowledge, your gist helped me run my Laravel Octane app with Nginx server using proxy,
I have found a cool pm2 command line do the same:
pm2 start artisan --name laravel-worker --interpreter php -- octane:start --server=roadrunner --max-requests=1000 --host=127.0.0.1 --port=8000

@EsmerlinJM
Copy link

Hi @WebSofter

Thank you so much for sharing, i use nginx in everything I use and this package and this configuration helped me a lot.

@yefersoncm
Copy link

Hi, this option helped me, however sometimes (40% of the time) the pages are loaded without the style, Im using bootstrap.
If I do the php artisan serve this won't happen, any guide with this?

@mahkassem
Copy link

@yefersoncm I think this has something to do with serving none https resources over https website, you need to enable ssl in your octane configuration.

try add OCTANE_HTTPS=true in your .env file then run php artisan optimize:clear.

@mahkassem
Copy link

mahkassem commented Dec 16, 2021

another work around is to add http --> https redirect in your nginx config

server {
    if ($host = YourDomain.com) {
        return 301 https://$host$request_uri;
    }
}

@aacassandra
Copy link

thankyou, you save my time

@Anggasayogo
Copy link

cool~

@danielzzz
Copy link

thank you!

@rafaelxavierborges
Copy link

Based on this, it was needed to run php artisan serve as sudo, so then i did like this bellow and also worked pretty well.

{ "name": "laravel_serve", "script": "php artisan serve --host=0.0.0.0 --port=80", "instances": "1", "wait_ready": true, "autorestart": false, "max_restarts": 1, "interpreter" : "sudo", "watch": true, "error_file": "log/err.log", "out_file": "log/out.log", "log_file": "log/combined.log", "time": true }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment