summaryrefslogtreecommitdiffstats
path: root/roles/taskotron/execdb/templates
diff options
context:
space:
mode:
authorMartin Krizek <mkrizek@redhat.com>2015-09-04 15:55:09 +0000
committerMartin Krizek <mkrizek@redhat.com>2015-09-04 15:55:30 +0000
commitd13334971f8c81a9b8c505c6add6bcf0e4bf6391 (patch)
tree9a1d01173c5323ae4997a827381d3569b65ebdfa /roles/taskotron/execdb/templates
parentb65b7cbc292a79e9dd4e89cf5e3bfa533f21fb28 (diff)
downloadansible-d13334971f8c81a9b8c505c6add6bcf0e4bf6391.tar.gz
ansible-d13334971f8c81a9b8c505c6add6bcf0e4bf6391.tar.xz
ansible-d13334971f8c81a9b8c505c6add6bcf0e4bf6391.zip
taskotron-dev: fix using https in links
Diffstat (limited to 'roles/taskotron/execdb/templates')
-rw-r--r--roles/taskotron/execdb/templates/settings.py.j26
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/taskotron/execdb/templates/settings.py.j2 b/roles/taskotron/execdb/templates/settings.py.j2
index 8cc965b2d..6075840ca 100644
--- a/roles/taskotron/execdb/templates/settings.py.j2
+++ b/roles/taskotron/execdb/templates/settings.py.j2
@@ -19,6 +19,6 @@ LOGFILR = '/var/log/execdb/execdb.log'
SYSLOG_LOGGING = False
STREAM_LOGGING = True
-BUILDBOT_FRONTPAGE_URL = 'http://{{ external_hostname }}/taskmaster'
-RESULTSDB_FRONTPAGE_URL = 'http://{{ external_hostname }}/resultsdb'
-ARTIFACTS_BASE_URL = 'http://{{ external_hostname }}/artifacts/all'
+BUILDBOT_FRONTPAGE_URL = 'https://{{ external_hostname }}/taskmaster'
+RESULTSDB_FRONTPAGE_URL = 'https://{{ external_hostname }}/resultsdb'
+ARTIFACTS_BASE_URL = 'https://{{ external_hostname }}/artifacts/all'