Skip to content

Commit

Permalink
feat : log backup 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
seokho-1116 committed Jul 30, 2024
1 parent f208b3b commit 70c342b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions backend/AnimatedDrawings/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ priority = 100
loglevel=info
stdout_logfile = /var/log/flower.log
stderr_logfile = /var/log/flower.err
stdout_logfile_maxbytes = 50MB
stdout_logfile_backups = 30
stderr_logfile_maxbytes = 50MB
stderr_logfile_backups = 30

[program:application]
directory = /app/application
Expand All @@ -22,6 +26,10 @@ loglevel=info
priority = 100
stdout_logfile = /var/log/application.log
stderr_logfile = /var/log/application.err
stdout_logfile_maxbytes = 50MB
stdout_logfile_backups = 30
stderr_logfile_maxbytes = 50MB
stderr_logfile_backups = 30
environment=ENVIRONMENT=%(ENV_ENVIRONMENT)s,PYOPENGL_PLATFORM="osmesa"

[program:celery]
Expand All @@ -31,5 +39,9 @@ priority = 200
loglevel=info
stdout_logfile = /var/log/celeryd.log
stderr_logfile = /var/log/celeryd.err
stdout_logfile_maxbytes = 50MB
stdout_logfile_backups = 30
stderr_logfile_maxbytes = 50MB
stderr_logfile_backups = 30
environment=ENVIRONMENT=%(ENV_ENVIRONMENT)s,PYOPENGL_PLATFORM="osmesa"

0 comments on commit 70c342b

Please sign in to comment.