taskotron-dev: fix using https in links

This commit is contained in:
Martin Krizek 2015-09-04 15:55:09 +00:00
parent b65b7cbc29
commit d13334971f
4 changed files with 6 additions and 6 deletions

View file

@ -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'