mirror of
https://github.com/ansible/awx.git
synced 2026-05-08 01:47:35 -02:30
Change default stdout temp directory
* Use /var/lib/awx on production configurations * Use /tmp for development configurations
This commit is contained in:
@@ -566,8 +566,9 @@ FACT_CACHE_PORT = 6564
|
|||||||
|
|
||||||
ORG_ADMINS_CAN_SEE_ALL_USERS = True
|
ORG_ADMINS_CAN_SEE_ALL_USERS = True
|
||||||
|
|
||||||
|
# Control when we display stdout and where to store the temporary files for downloading
|
||||||
STDOUT_MAX_BYTES_DISPLAY = 1000000
|
STDOUT_MAX_BYTES_DISPLAY = 1000000
|
||||||
STDOUT_TEMP_DIR = "/tmp"
|
STDOUT_TEMP_DIR = "/var/lib/awx/"
|
||||||
|
|
||||||
# Logging configuration.
|
# Logging configuration.
|
||||||
LOGGING = {
|
LOGGING = {
|
||||||
|
|||||||
@@ -64,6 +64,8 @@ PASSWORD_HASHERS = (
|
|||||||
# Configure a default UUID for development only.
|
# Configure a default UUID for development only.
|
||||||
SYSTEM_UUID = '00000000-0000-0000-0000-000000000000'
|
SYSTEM_UUID = '00000000-0000-0000-0000-000000000000'
|
||||||
|
|
||||||
|
STDOUT_TEMP_DIR = "/tmp"
|
||||||
|
|
||||||
# If there is an `/etc/tower/settings.py`, include it.
|
# If there is an `/etc/tower/settings.py`, include it.
|
||||||
# If there is a `/etc/tower/conf.d/*.py`, include them.
|
# If there is a `/etc/tower/conf.d/*.py`, include them.
|
||||||
include(optional('/etc/tower/settings.py'), scope=locals())
|
include(optional('/etc/tower/settings.py'), scope=locals())
|
||||||
|
|||||||
Reference in New Issue
Block a user