1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 09:51:09 +03:00
awx/config/deb/settings.py

37 lines
697 B
Python
Raw Normal View History

2013-06-15 12:10:11 +04:00
ADMINS = (
#('Joe Admin', 'joeadmin@example.com'),
)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
2013-06-23 21:21:02 +04:00
'NAME': 'awx',
'USER': 'awx',
2013-06-15 12:10:11 +04:00
'PASSWORD': 'AWsecret',
'HOST': '',
'PORT': '',
}
}
2013-06-23 21:21:02 +04:00
STATIC_ROOT = '/var/lib/awx/public/static'
2013-06-15 12:10:11 +04:00
2013-06-23 21:21:02 +04:00
PROJECTS_ROOT = '/var/lib/awx/projects'
2013-06-15 12:10:11 +04:00
2013-06-23 21:21:02 +04:00
SECRET_KEY = file('/etc/awx/SECRET_KEY', 'rb').read().strip()
2013-06-15 12:10:11 +04:00
ALLOWED_HOSTS = ['*']
2013-06-23 23:40:07 +04:00
LOGGING = {
'version': 1,
2013-06-15 12:10:11 +04:00
}
SERVER_EMAIL = 'root@localhost'
DEFAULT_FROM_EMAIL = 'webmaster@localhost'
2013-06-23 23:40:07 +04:00
EMAIL_SUBJECT_PREFIX = '[AnsibleWorks] '
2013-06-15 12:10:11 +04:00
EMAIL_HOST = 'localhost'
EMAIL_PORT = 25
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_USE_TLS = False