Less configs to worry about
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import os
|
||||
|
||||
# Gunicorn config variables
|
||||
loglevel = "debug"
|
||||
loglevel = os.getenv('AE_LOG_LVL', 'warning')
|
||||
|
||||
accesslog = "/logs/gunicorn_access.log" # "-" # stdout
|
||||
errorlog = "/logs/gunicorn_error.log" # "-" # stderr
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import os
|
||||
|
||||
# Gunicorn config variables
|
||||
loglevel = "debug"
|
||||
loglevel = os.getenv('AE_LOG_LVL', 'warning')
|
||||
|
||||
# accesslog = "/logs/gunicorn_access.log" # "-" # stdout
|
||||
errorlog = "/logs/gunicorn_error.log" # "-" # stderr
|
||||
|
||||
Reference in New Issue
Block a user