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

@ -30,7 +30,7 @@ execdb_db_port: 5432
execdb_endpoint: 'execdb'
execdb_db_name: execdb_dev
external_hostname: https://taskotron-dev.fedoraproject.org
external_hostname: taskotron-dev.fedoraproject.org
allowed_hosts:
- 10.5.124

View file

@ -22,7 +22,7 @@ buildmaster_dir: /home/buildmaster/master
buildslave_dir: /home/buildslave/slave
master_dir: /home/buildmaster/master
master_user: buildmaster
external_hostname: https://taskotron-dev.fedoraproject.org
external_hostname: taskotron-dev.fedoraproject.org
execdb_server: http://resultsdb-dev01.qa.fedoraproject.org/execdb
execdb_statuspush: http://resultsdb-dev01.qa.fedoraproject.org/execdb/buildbottest
execdb_endpoint: execdb

View file

@ -21,7 +21,7 @@ virt_install_command: /usr/bin/virt-install -n {{ inventory_hostname }} -r {{ me
hostname={{ inventory_hostname }}"
--network=bridge=br0 --autostart --noautoconsole
public_hostname: https://taskotron-dev.fedoraproject.org
public_hostname: taskotron-dev.fedoraproject.org
buildmaster: 10.5.124.181
buildslaves:
- taskotron-client26

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'