mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 09:51:09 +03:00
Include a sane default location for the job root in the production config
This commit is contained in:
parent
bb23dd6bb4
commit
b77ec07581
@ -83,10 +83,6 @@ MEDIA_URL = '/media/'
|
||||
# This directory should not be web-accessible.
|
||||
PROJECTS_ROOT = os.path.join(BASE_DIR, 'projects')
|
||||
|
||||
# Absolute filesystem path to the directory for job status stdout
|
||||
# This directory should not be web-accessible
|
||||
JOBOUTPUT_ROOT = os.path.join(BASE_DIR, 'job_status')
|
||||
|
||||
SITE_ID = 1
|
||||
|
||||
# Make this unique, and don't share it with anybody.
|
||||
|
@ -26,6 +26,10 @@ USE_MINIFIED_JS = True
|
||||
# URL used by inventory script and callback plugin to access API.
|
||||
INTERNAL_API_URL = 'http://127.0.0.1:80'
|
||||
|
||||
# Absolute filesystem path to the directory for job status stdout
|
||||
# This directory should not be web-accessible
|
||||
JOBOUTPUT_ROOT = '/var/lib/awx/job_status/'
|
||||
|
||||
# Load remaining settings from the global settings file specified in the
|
||||
# environment, defaulting to /etc/awx/settings.py.
|
||||
settings_file = os.environ.get('AWX_SETTINGS_FILE',
|
||||
|
Loading…
Reference in New Issue
Block a user