adding local use case to taskotron roles, fixing up some vars to be more consistent

This commit is contained in:
Tim Flink 2015-01-29 16:51:31 +00:00
parent dba8995baa
commit 497f77b7aa
21 changed files with 58 additions and 19 deletions

View file

@ -1,5 +1,5 @@
WSGIDaemonProcess resultsdb_frontend user=apache group=apache threads=5
WSGIScriptAlias {{ resultsdb_fe_endpoint }} /usr/share/resultsdb_frontend/resultsdb_frontend.wsgi
WSGIScriptAlias /{{ resultsdb_fe_endpoint }} /usr/share/resultsdb_frontend/resultsdb_frontend.wsgi
WSGISocketPrefix run/wsgi
# this isn't the best way to force SSL but it works for now

View file

@ -10,6 +10,10 @@ SECRET_KEY = '{{ stg_resultsdb_frontend_secret_key }}'
{% if deployment_type == 'prod' %}
SECRET_KEY = '{{ prod_resultsdb_frontend_secret_key }}'
{% endif %}
{% if deployment_type == 'local' %}
SECRET_KEY = '{{ local_resultsdb_frontend_secret_key }}'
{% endif %}
FILE_LOGGING = False
LOGFILR = '/var/log/resultsdb_frontend/resultsdb_frontend.log'
SYSLOG_LOGGING = False