Skip to content

Commit

Permalink
Fix Permission | Depends
Browse files Browse the repository at this point in the history
  • Loading branch information
dbpolito committed May 20, 2024
1 parent 95264d5 commit db9ae1e
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions 8.0-swoole-nginx-prod/supervisor.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole
command = su-exec kool php artisan octane:start --server=swoole
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout
4 changes: 2 additions & 2 deletions 8.0-swoole-nginx/supervisor.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole --watch
command = su-exec kool php artisan octane:start --server=swoole --watch
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout
4 changes: 2 additions & 2 deletions 8.1-swoole-nginx-prod/supervisor.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole
command = su-exec kool php artisan octane:start --server=swoole
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout
4 changes: 2 additions & 2 deletions 8.1-swoole-nginx/supervisor.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole --watch
command = su-exec kool php artisan octane:start --server=swoole --watch
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout
4 changes: 2 additions & 2 deletions 8.2-swoole-nginx-prod/supervisor.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole
command = su-exec kool php artisan octane:start --server=swoole
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout
4 changes: 2 additions & 2 deletions 8.2-swoole-nginx/supervisor.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole --watch
command = su-exec kool php artisan octane:start --server=swoole --watch
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout
4 changes: 2 additions & 2 deletions 8.3-swoole-nginx-prod/supervisor.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole
command = su-exec kool php artisan octane:start --server=swoole
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout
4 changes: 2 additions & 2 deletions 8.3-swoole-nginx/supervisor.conf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole --watch
command = su-exec kool php artisan octane:start --server=swoole --watch
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout
4 changes: 2 additions & 2 deletions template/supervisor-conf.blade.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[program:nginx]
depends_on = php-fpm
depends_on = octane
command = nginx -g "daemon off;"
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

[program:octane]
command = php artisan octane:start --server=swoole{!! $prod ? '' : ' --watch' !!}
command = su-exec kool php artisan octane:start --server=swoole{!! $prod ? '' : ' --watch' !!}
stopasgroup = true
stderr_logfile = /dev/stderr
stdout_logfile = /dev/stdout

0 comments on commit db9ae1e

Please sign in to comment.