Skip to content

Commit

Permalink
supervisord: added note about production use and reduced verbosity level
Browse files Browse the repository at this point in the history
  • Loading branch information
brusch committed Oct 12, 2021
1 parent ab15d7d commit 276a2b0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .docker/supervisord.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

# Important Notice: this configuration is not optimized for production use!

[program:messenger-consume]
command=php /var/www/html/bin/console messenger:consume pimcore_core pimcore_maintenance -vv --memory-limit=250M --time-limit=3600
command=php /var/www/html/bin/console messenger:consume pimcore_core pimcore_maintenance --memory-limit=250M --time-limit=3600
numprocs=1
startsecs=0
autostart=true
Expand All @@ -11,7 +13,7 @@ stdout_logfile_maxbytes=0
redirect_stderr=true

[program:maintenance]
command=bash -c 'sleep 60 && exec php /var/www/html/bin/console pimcore:maintenance --async -vvv'
command=bash -c 'sleep 3600 && exec php /var/www/html/bin/console pimcore:maintenance --async'
autostart=true
autorestart=true
stdout_logfile=/dev/fd/1
Expand Down

0 comments on commit 276a2b0

Please sign in to comment.