· 6 years ago · Aug 13, 2019, 02:44 PM
1# !!! DO NOT EDIT THIS FILE !!!
2# Default AWX settings
3
4###############################################################################
5# MISC PROJECT SETTINGS
6###############################################################################
7
8ADMINS = (
9 #('Joe Admin', 'joeadmin@example.com'),
10)
11
12STATIC_ROOT = '/var/lib/awx/public/static'
13
14PROJECTS_ROOT = '/var/lib/awx/projects'
15
16JOBOUTPUT_ROOT = '/var/lib/awx/job_status'
17
18SECRET_KEY = open('/etc/tower/SECRET_KEY', 'rb').read().strip()
19
20ALLOWED_HOSTS = ['*']
21
22INTERNAL_API_URL = 'http://127.0.0.1:80'
23
24###############################################################################
25# EMAIL SETTINGS
26###############################################################################
27
28SERVER_EMAIL = 'root@localhost'
29DEFAULT_FROM_EMAIL = 'webmaster@localhost'
30EMAIL_SUBJECT_PREFIX = '[AWX] '
31
32EMAIL_HOST = 'localhost'
33EMAIL_PORT = 25
34EMAIL_HOST_USER = ''
35EMAIL_HOST_PASSWORD = ''
36EMAIL_USE_TLS = False
37
38###############################################################################
39#
40# !!!!!!!!!!!! DO NOT EDIT THIS FILE !!!!!!!!!!!
41#
42# This file *will* be overwritten the next time you upgrade Tower, and any
43# changes you make here *will* be lost.
44#
45# Many setting values can be persisted to the Tower database by visiting:
46#
47# https://your-tower.example.org/api/v2/settings/all/
48#
49# Custom settings you wish to persist to disk across upgrades should be set in:
50#
51# /etc/tower/conf.d/custom.py
52#
53###############################################################################