mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: update Gunicorn access log file configuration to use stdout
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
This commit is contained in:
parent
a86d286a34
commit
03ba4df625
|
|
@ -27,7 +27,7 @@ class GunicornService(BaseService):
|
|||
'--max-requests', '10240',
|
||||
'--max-requests-jitter', '2048',
|
||||
'--access-logformat', log_format,
|
||||
'--access-logfile', 'None',
|
||||
'--access-logfile', '-',
|
||||
'--error-logfile', '-'
|
||||
]
|
||||
if DEBUG:
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class GunicornLocalModelService(BaseService):
|
|||
'--max-requests', '10240',
|
||||
'--max-requests-jitter', '2048',
|
||||
'--access-logformat', log_format,
|
||||
'--access-logfile', 'None',
|
||||
'--access-logfile', '-',
|
||||
'--error-logfile', '-'
|
||||
]
|
||||
if DEBUG:
|
||||
|
|
|
|||
Loading…
Reference in New Issue