This commit is contained in:
parent
8c597005d6
commit
7973bc9d40
|
|
@ -17,6 +17,7 @@ serverurl=unix:///var/run/supervisor.sock
|
|||
|
||||
[program:postgres]
|
||||
command=/bin/bash /supabase/postgres/wrapper.sh
|
||||
priority=10
|
||||
user=root
|
||||
autorestart=true
|
||||
stdout_logfile=/var/log/postgres.out.log
|
||||
|
|
@ -26,6 +27,7 @@ environment=POSTGRES_PASSWORD="postgres"
|
|||
|
||||
[program:postgrest]
|
||||
command=/bin/bash /supabase/postgrest/wrapper.sh
|
||||
priority=20
|
||||
autorestart=true
|
||||
user=root
|
||||
stderr_logfile=/var/log/postgrest.err.log
|
||||
|
|
@ -36,6 +38,7 @@ autorestart=false
|
|||
|
||||
[program:auth]
|
||||
command=/bin/bash /supabase/gotrue/wrapper.sh
|
||||
priority=40
|
||||
autorestart=true
|
||||
user=1000
|
||||
stderr_logfile=/var/log/auth.err.log
|
||||
|
|
@ -46,6 +49,7 @@ autorestart=false
|
|||
[program:storage-api]
|
||||
directory=/supabase/storage-api
|
||||
command=/bin/bash /supabase/storage-api/wrapper.sh
|
||||
priority=50
|
||||
autorestart=true
|
||||
stderr_logfile=/var/log/storage-api.err.log
|
||||
stdout_logfile=/var/log/storage-api.out.log
|
||||
|
|
@ -54,6 +58,7 @@ autorestart=false
|
|||
|
||||
[program:kong]
|
||||
command=/bin/bash /supabase/kong/wrapper.sh
|
||||
priority=30
|
||||
user=root
|
||||
autorestart=true
|
||||
redirect_stderr=true
|
||||
|
|
@ -64,6 +69,7 @@ autorestart=false
|
|||
|
||||
[program:chatdesk-ui]
|
||||
command=/bin/bash /supabase/chatdesk/wrapper.sh
|
||||
priority=60
|
||||
user=root
|
||||
autorestart=true
|
||||
stderr_logfile=/var/log/chatdesk-ui.err.log
|
||||
|
|
|
|||
Loading…
Reference in New Issue