2014-12-07 23:39:44 +00:00
|
|
|
- name: Set up those proxy websites. My, my..
|
2015-02-21 22:28:28 +00:00
|
|
|
hosts: proxies-stg:proxies
|
2014-12-07 23:39:44 +00:00
|
|
|
user: root
|
|
|
|
gather_facts: True
|
|
|
|
|
|
|
|
vars_files:
|
|
|
|
- /srv/web/infra/ansible/vars/global.yml
|
2015-01-09 22:59:18 +00:00
|
|
|
- "/srv/private/ansible/vars.yml"
|
2014-12-07 23:39:44 +00:00
|
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
|
|
|
|
handlers:
|
2017-04-13 15:46:14 +00:00
|
|
|
- include: "{{ handlers_path }}/restart_services.yml"
|
2014-12-07 23:39:44 +00:00
|
|
|
|
2014-12-07 23:43:38 +00:00
|
|
|
|
2014-12-18 18:34:00 +00:00
|
|
|
pre_tasks:
|
2015-03-24 00:06:29 +00:00
|
|
|
- name: Install policycoreutils-python
|
2017-10-09 00:38:19 +02:00
|
|
|
package: name=policycoreutils-python state=present
|
2015-03-24 00:06:29 +00:00
|
|
|
|
2014-12-18 18:34:00 +00:00
|
|
|
- name: Create /srv/web/ for all the goodies.
|
2015-01-06 19:16:24 +00:00
|
|
|
file: >
|
|
|
|
dest=/srv/web state=directory
|
|
|
|
owner=root group=root mode=0755
|
2015-01-06 21:25:03 +00:00
|
|
|
tags:
|
|
|
|
- httpd
|
|
|
|
- httpd/website
|
2015-02-22 14:08:37 +00:00
|
|
|
|
|
|
|
- name: check the selinux context of webdir
|
|
|
|
command: matchpathcon /srv/web
|
|
|
|
register: webdir
|
2016-11-01 16:29:49 +00:00
|
|
|
check_mode: no
|
2015-02-22 14:08:37 +00:00
|
|
|
changed_when: "1 != 1"
|
|
|
|
tags:
|
|
|
|
- config
|
|
|
|
- selinux
|
|
|
|
- httpd
|
|
|
|
- httpd/website
|
|
|
|
|
|
|
|
- name: /srv/web file contexts
|
|
|
|
command: semanage fcontext -a -t httpd_sys_content_t "/srv/web(/.*)?"
|
|
|
|
when: webdir.stdout.find('httpd_sys_content_t') == -1
|
2014-12-18 18:34:00 +00:00
|
|
|
tags:
|
2015-02-22 14:08:37 +00:00
|
|
|
- config
|
|
|
|
- selinux
|
2014-12-18 18:34:00 +00:00
|
|
|
- httpd
|
|
|
|
- httpd/website
|
|
|
|
|
2014-12-07 23:39:44 +00:00
|
|
|
roles:
|
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: fedoraproject.org
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2015-05-25 03:00:15 +00:00
|
|
|
server_aliases:
|
|
|
|
- stg.fedoraproject.org
|
|
|
|
- localhost
|
2014-12-07 23:39:44 +00:00
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
# This is for all the other domains we own
|
2015-07-22 18:53:49 +02:00
|
|
|
# that redirect to https://fedoraproject.org
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: fedoraproject.com
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
server_aliases:
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedora.asia
|
2014-12-08 14:07:27 +00:00
|
|
|
- fedora.com.my
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedora.cr
|
|
|
|
- fedora.events
|
|
|
|
- fedora.me
|
|
|
|
- fedora.mobi
|
2014-12-08 14:07:27 +00:00
|
|
|
- fedora.my
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedora.org
|
|
|
|
- fedora.org.cn
|
2014-12-08 14:07:27 +00:00
|
|
|
- fedora.pe
|
|
|
|
- fedora.pt
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedora.redhat.com
|
|
|
|
- fedora.software
|
|
|
|
- fedora.tk
|
2014-12-08 14:07:27 +00:00
|
|
|
- fedora.us
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedora.wiki
|
2014-12-08 14:07:27 +00:00
|
|
|
- fedoralinux.com
|
|
|
|
- fedoralinux.net
|
|
|
|
- fedoralinux.org
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedoraproject.asia
|
|
|
|
- fedoraproject.cn
|
|
|
|
- fedoraproject.co.uk
|
2014-12-08 14:07:27 +00:00
|
|
|
- fedoraproject.com
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedoraproject.com.cn
|
|
|
|
- fedoraproject.com.gr
|
2014-12-08 14:07:27 +00:00
|
|
|
- fedoraproject.com.my
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedoraproject.cz
|
|
|
|
- fedoraproject.eu
|
|
|
|
- fedoraproject.gr
|
|
|
|
- fedoraproject.info
|
2014-12-08 14:07:27 +00:00
|
|
|
- fedoraproject.net
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedoraproject.net.cn
|
|
|
|
- fedoraproject.org.uk
|
|
|
|
- fedoraproject.pe
|
|
|
|
- fedoraproject.su
|
2014-12-08 14:07:27 +00:00
|
|
|
- projectofedora.org
|
2015-03-26 00:55:51 +00:00
|
|
|
- www.fedora.asia
|
|
|
|
- www.fedora.com.my
|
|
|
|
- www.fedora.cr
|
|
|
|
- www.fedora.events
|
|
|
|
- www.fedora.me
|
|
|
|
- www.fedora.mobi
|
|
|
|
- www.fedora.org
|
|
|
|
- www.fedora.org.cn
|
2014-12-08 14:07:27 +00:00
|
|
|
- www.fedora.pe
|
|
|
|
- www.fedora.pt
|
|
|
|
- www.fedora.redhat.com
|
2015-03-26 00:55:51 +00:00
|
|
|
- www.fedora.software
|
|
|
|
- www.fedora.tk
|
2014-12-08 14:07:27 +00:00
|
|
|
- www.fedora.us
|
2015-03-26 00:55:51 +00:00
|
|
|
- www.fedora.wiki
|
2014-12-08 14:07:27 +00:00
|
|
|
- www.fedoralinux.com
|
|
|
|
- www.fedoralinux.net
|
|
|
|
- www.fedoralinux.org
|
2015-03-26 00:55:51 +00:00
|
|
|
- www.fedoraproject.asia
|
|
|
|
- www.fedoraproject.cn
|
|
|
|
- www.fedoraproject.co.uk
|
2014-12-08 14:07:27 +00:00
|
|
|
- www.fedoraproject.com
|
2015-03-26 00:55:51 +00:00
|
|
|
- www.fedoraproject.com.cn
|
|
|
|
- www.fedoraproject.com.gr
|
|
|
|
- www.fedoraproject.com.my
|
|
|
|
- www.fedoraproject.cz
|
|
|
|
- www.fedoraproject.eu
|
|
|
|
- www.fedoraproject.gr
|
|
|
|
- www.fedoraproject.info
|
2014-12-08 14:07:27 +00:00
|
|
|
- www.fedoraproject.net
|
2015-03-26 00:55:51 +00:00
|
|
|
- www.fedoraproject.net.cn
|
2014-12-08 14:07:27 +00:00
|
|
|
- www.fedoraproject.org
|
|
|
|
- www.fedoraproject.org.uk
|
2015-03-26 00:55:51 +00:00
|
|
|
- www.fedoraproject.pe
|
|
|
|
- www.fedoraproject.su
|
2014-12-08 14:07:27 +00:00
|
|
|
- www.projectofedora.org
|
2015-12-12 19:05:17 +00:00
|
|
|
- www.getfedora.com
|
|
|
|
- getfedora.com
|
2016-11-11 20:08:20 +00:00
|
|
|
- www.getfedora.org
|
2016-10-18 01:01:43 +00:00
|
|
|
- fedoraplayground.org
|
2016-10-18 01:21:21 +00:00
|
|
|
- fedoraplayground.com
|
2016-08-08 19:36:31 +00:00
|
|
|
|
2014-12-07 23:39:44 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: admin.fedoraproject.org
|
|
|
|
server_aliases: [admin.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: cloud.fedoraproject.org
|
2015-08-25 21:43:16 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: mirrors.fedoraproject.org
|
2015-03-26 01:26:18 +00:00
|
|
|
server_aliases:
|
2015-03-31 20:59:20 +00:00
|
|
|
- mirrors.stg.fedoraproject.org
|
2015-03-26 00:55:51 +00:00
|
|
|
- fedoramirror.net
|
|
|
|
- www.fedoramirror.net
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
2016-03-12 09:55:45 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: src.fedoraproject.org
|
2016-12-11 23:47:32 +00:00
|
|
|
server_aliases: [src.stg.fedoraproject.org]
|
2016-03-12 09:55:45 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2016-03-12 10:28:43 +00:00
|
|
|
sslonly: true
|
2016-03-12 09:55:45 +00:00
|
|
|
|
2014-12-08 00:27:47 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: download.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- download01.fedoraproject.org
|
|
|
|
- download02.fedoraproject.org
|
|
|
|
- download03.fedoraproject.org
|
|
|
|
- download04.fedoraproject.org
|
|
|
|
- download05.fedoraproject.org
|
|
|
|
- download06.fedoraproject.org
|
|
|
|
- download07.fedoraproject.org
|
|
|
|
- download08.fedoraproject.org
|
|
|
|
- download09.fedoraproject.org
|
|
|
|
- download10.fedoraproject.org
|
2016-10-17 23:26:50 +00:00
|
|
|
- download-rdu01.fedoraproject.org
|
2014-12-08 00:27:47 +00:00
|
|
|
- download.stg.fedoraproject.org
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: translate.fedoraproject.org
|
|
|
|
server_aliases: [translate.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: spins.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- spins.stg.fedoraproject.org
|
|
|
|
- spins-test.fedoraproject.org
|
2015-08-25 21:43:16 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
2015-05-01 15:54:24 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: labs.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- labs.stg.fedoraproject.org
|
2015-08-25 21:43:16 +02:00
|
|
|
sslonly: true
|
2015-05-01 15:54:24 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: arm.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- arm.stg.fedoraproject.org
|
2015-08-25 21:43:16 +02:00
|
|
|
sslonly: true
|
2015-05-01 15:54:24 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2016-03-01 20:22:38 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: budget.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- budget.stg.fedoraproject.org
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 00:27:47 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: boot.fedoraproject.org
|
|
|
|
server_aliases: [boot.stg.fedoraproject.org]
|
2015-08-25 21:43:16 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: boot.fedoraproject.org
|
|
|
|
server_aliases: [boot.stg.fedoraproject.org]
|
2015-08-25 21:43:16 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: smolts.org
|
|
|
|
ssl: false
|
|
|
|
server_aliases:
|
|
|
|
- smolt.fedoraproject.org
|
|
|
|
- stg.smolts.org
|
|
|
|
- www.smolts.org
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 00:27:47 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: docs.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- doc.fedoraproject.org
|
|
|
|
- docs.stg.fedoraproject.org
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
2017-08-24 22:52:09 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: docs-old.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- docs-old.stg.fedoraproject.org
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: bodhi.fedoraproject.org
|
2015-08-20 18:42:39 +00:00
|
|
|
sslonly: true
|
2014-12-08 14:07:27 +00:00
|
|
|
server_aliases: [bodhi.stg.fedoraproject.org]
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
2015-06-24 22:03:52 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: flocktofedora.org
|
2015-06-24 22:12:27 +00:00
|
|
|
server_aliases:
|
|
|
|
- flocktofedora.org
|
2016-01-21 21:51:26 +00:00
|
|
|
- www.flocktofedora.org
|
2016-01-21 21:19:43 +00:00
|
|
|
ssl: true
|
2016-01-21 21:42:56 +00:00
|
|
|
sslonly: true
|
2016-01-21 20:42:20 +00:00
|
|
|
cert_name: flocktofedora.org
|
|
|
|
SSLCertificateChainFile: flocktofedora.org.intermediate.cert
|
2015-06-24 22:03:52 +00:00
|
|
|
|
2016-01-21 21:24:03 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: flocktofedora.net
|
|
|
|
server_aliases:
|
|
|
|
- flocktofedora.com
|
2016-01-21 21:59:02 +00:00
|
|
|
- www.flocktofedora.net
|
|
|
|
- www.flocktofedora.com
|
2016-01-21 21:24:03 +00:00
|
|
|
ssl: false
|
|
|
|
|
2015-07-08 15:54:59 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: fedora.my
|
|
|
|
server_aliases:
|
|
|
|
- fedora.my
|
|
|
|
ssl: false
|
|
|
|
|
2016-01-21 23:56:54 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: copr.fedoraproject.org
|
2016-01-22 00:43:49 +00:00
|
|
|
ssl: true
|
|
|
|
# We need sslonly=false because copr-cli hardcoded http
|
|
|
|
sslonly: false
|
2016-01-21 23:56:54 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: bugz.fedoraproject.org
|
|
|
|
server_aliases: [bugz.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: fas.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- fas.stg.fedoraproject.org
|
|
|
|
- accounts.fedoraproject.org
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: fedoracommunity.org
|
|
|
|
server_aliases:
|
|
|
|
- www.fedoracommunity.org
|
|
|
|
- stg.fedoracommunity.org
|
2015-03-26 01:05:12 +00:00
|
|
|
- fedoraproject.community
|
|
|
|
- fedora.community
|
|
|
|
- www.fedora.community
|
|
|
|
- www.fedoraproject.community
|
2014-12-08 14:07:27 +00:00
|
|
|
ssl: false
|
2017-04-27 23:57:52 +00:00
|
|
|
cert_name: fedoracommunity.org
|
|
|
|
SSLCertificateChainFile: fedoracommunity.org.intermediate.cert
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: get.fedoraproject.org
|
|
|
|
server_aliases: [get.stg.fedoraproject.org]
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: help.fedoraproject.org
|
|
|
|
server_aliases: [help.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:25:44 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: it.fedoracommunity.org
|
|
|
|
server_aliases: [it.fedoracommunity.org]
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: uk.fedoracommunity.org
|
|
|
|
server_aliases:
|
|
|
|
- uk.fedoracommunity.org
|
|
|
|
- www.uk.fedoracommunity.org
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
2016-10-23 04:51:12 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: tw.fedoracommunity.org
|
|
|
|
server_aliases:
|
|
|
|
- tw.fedoracommunity.org
|
|
|
|
- www.tw.fedoracommunity.org
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2015-11-04 23:25:32 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: communityblog.fedoraproject.org
|
|
|
|
server_aliases: [communityblog.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: people.fedoraproject.org
|
|
|
|
server_aliases: [people.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: join.fedoraproject.org
|
|
|
|
server_aliases: [join.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: l10n.fedoraproject.org
|
|
|
|
server_aliases: [l10n.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: start.fedoraproject.org
|
|
|
|
server_aliases: [start.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: kde.fedoraproject.org
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: nightly.fedoraproject.org
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
2015-02-04 16:44:36 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: store.fedoraproject.org
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-02-04 16:44:36 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: port389.org
|
|
|
|
server_aliases:
|
|
|
|
- www.port389.org
|
|
|
|
- 389tcp.org
|
|
|
|
- www.389tcp.org
|
|
|
|
ssl: false
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2016-08-08 19:36:31 +00:00
|
|
|
|
2015-04-30 19:55:40 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: whatcanidoforfedora.org
|
|
|
|
server_aliases:
|
|
|
|
- www.whatcanidoforfedora.org
|
|
|
|
ssl: false
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: fedoramagazine.org
|
2015-03-12 15:41:03 +00:00
|
|
|
server_aliases: [www.fedoramagazine.org stg.fedoramagazine.org]
|
2014-12-08 14:07:27 +00:00
|
|
|
cert_name: fedoramagazine.org
|
|
|
|
SSLCertificateChainFile: fedoramagazine.org.intermediate.cert
|
2016-07-14 12:24:56 +00:00
|
|
|
sslonly: true
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: k12linux.org
|
|
|
|
server_aliases:
|
|
|
|
- www.k12linux.org
|
|
|
|
ssl: false
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: fonts.fedoraproject.org
|
|
|
|
server_aliases: [fonts.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: meetbot.fedoraproject.org
|
|
|
|
server_aliases: [meetbot.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
2015-06-12 14:09:41 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: meetbot-raw.fedoraproject.org
|
|
|
|
server_aliases: [meetbot-raw.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-06-12 14:09:41 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: fudcon.fedoraproject.org
|
|
|
|
server_aliases: [fudcon.stg.fedoraproject.org]
|
2015-08-25 21:56:37 +02:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: ask.fedoraproject.org
|
|
|
|
server_aliases: [ask.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: badges.fedoraproject.org
|
|
|
|
server_aliases: [badges.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: darkserver.fedoraproject.org
|
|
|
|
server_aliases: [darkserver.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: paste.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- paste.stg.fedoraproject.org
|
2017-02-15 21:32:30 +00:00
|
|
|
- modernpaste.stg.fedoraproject.org
|
2017-02-16 00:53:42 +00:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2017-04-24 23:18:02 +00:00
|
|
|
|
2016-04-15 16:27:23 +00:00
|
|
|
#
|
|
|
|
# Make a website here so we can redirect it to paste.fedoraproject.org
|
|
|
|
#
|
2017-04-06 20:31:39 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: fpaste.org
|
|
|
|
server_aliases:
|
|
|
|
- www.fpaste.org
|
|
|
|
cert_name: fpaste.org
|
2017-04-06 21:09:48 +00:00
|
|
|
SSLCertificateChainFile: fpaste.org.intermediate.cert
|
2017-04-06 20:31:39 +00:00
|
|
|
when: inventory_hostname == 'proxy01.phx2.fedoraproject.org'
|
|
|
|
|
2016-04-15 16:27:23 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: fpaste.org
|
|
|
|
server_aliases:
|
|
|
|
- www.fpaste.org
|
2016-04-15 16:31:57 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2017-04-06 20:31:39 +00:00
|
|
|
when: inventory_hostname != 'proxy01.phx2.fedoraproject.org'
|
2014-12-08 14:07:27 +00:00
|
|
|
|
2016-12-08 18:35:27 +00:00
|
|
|
- role: httpd/website
|
2016-12-11 23:34:11 +00:00
|
|
|
name: koji.fedoraproject.org
|
2016-12-08 19:37:18 +00:00
|
|
|
sslonly: true
|
2016-12-08 19:40:41 +00:00
|
|
|
server_aliases:
|
2016-12-09 03:33:45 +00:00
|
|
|
- koji.stg.fedoraproject.org
|
2016-12-13 18:00:47 +00:00
|
|
|
- kojipkgs.stg.fedoraproject.org
|
2016-12-12 23:56:38 +00:00
|
|
|
- buildsys.fedoraproject.org
|
2016-12-09 03:33:45 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2016-12-14 23:57:52 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: ppc.koji.fedoraproject.org
|
|
|
|
sslonly: true
|
2017-09-09 22:26:40 +00:00
|
|
|
certbot: true
|
2016-12-14 23:57:52 +00:00
|
|
|
server_aliases:
|
|
|
|
- ppcpkgs.fedoraproject.org
|
|
|
|
cert_name: secondary.koji.fedoraproject.org.letsencrypt
|
2016-12-15 00:39:31 +00:00
|
|
|
SSLCertificateChainFile: secondary.koji.fedoraproject.org.letsencrypt.intermediate.crt
|
2017-09-09 23:29:17 +00:00
|
|
|
tags:
|
|
|
|
- ppc.koji.fedoraproject.org
|
2016-12-14 23:57:52 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: s390.koji.fedoraproject.org
|
|
|
|
sslonly: true
|
2017-09-09 22:26:40 +00:00
|
|
|
certbot: true
|
2016-12-14 23:57:52 +00:00
|
|
|
server_aliases:
|
|
|
|
- s390pkgs.fedoraproject.org
|
|
|
|
cert_name: secondary.koji.fedoraproject.org.letsencrypt
|
2016-12-15 00:39:31 +00:00
|
|
|
SSLCertificateChainFile: secondary.koji.fedoraproject.org.letsencrypt.intermediate.crt
|
2017-09-09 23:29:17 +00:00
|
|
|
tags:
|
|
|
|
- s390.koji.fedoraproject.org
|
2016-12-14 23:57:52 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: arm.koji.fedoraproject.org
|
|
|
|
sslonly: true
|
2017-09-09 22:26:40 +00:00
|
|
|
certbot: true
|
2016-12-14 23:57:52 +00:00
|
|
|
server_aliases:
|
|
|
|
- armpkgs.fedoraproject.org
|
|
|
|
cert_name: secondary.koji.fedoraproject.org.letsencrypt
|
2016-12-15 00:39:31 +00:00
|
|
|
SSLCertificateChainFile: secondary.koji.fedoraproject.org.letsencrypt.intermediate.crt
|
2017-09-09 23:29:17 +00:00
|
|
|
tags:
|
|
|
|
- arm.koji.fedoraproject.org
|
2016-12-14 23:57:52 +00:00
|
|
|
|
2017-01-15 20:16:41 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: kojipkgs.fedoraproject.org
|
|
|
|
sslonly: true
|
2017-01-17 22:41:13 +00:00
|
|
|
server_aliases:
|
|
|
|
- kojipkgs01.fedoraproject.org
|
|
|
|
- kojipkgs02.fedoraproject.org
|
2017-01-15 20:16:41 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: apps.fedoraproject.org
|
|
|
|
server_aliases: [apps.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
gzip: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
2016-01-12 14:08:22 -05:00
|
|
|
- role: httpd/website
|
|
|
|
name: pdc.fedoraproject.org
|
|
|
|
server_aliases: [pdc.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
gzip: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2015-10-27 17:26:36 +00:00
|
|
|
- role: httpd/website
|
2015-10-30 17:14:16 +00:00
|
|
|
name: developer.fedoraproject.org
|
2015-10-27 17:26:36 +00:00
|
|
|
server_aliases: [developer.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2016-04-05 06:05:32 +00:00
|
|
|
# This is just a redirect to developer, to make it easier for people to get
|
|
|
|
# here from Red Hat's developers.redhat.com (ticket #5216).
|
|
|
|
- role: httpd/website
|
|
|
|
name: developers.fedoraproject.org
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2016-04-05 17:18:31 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: osbs.fedoraproject.org
|
2016-04-05 17:37:48 +00:00
|
|
|
server_aliases: [osbs.stg.fedoraproject.org]
|
2016-04-05 17:18:31 +00:00
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2017-05-11 19:49:31 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: os.fedoraproject.org
|
|
|
|
server_aliases: [os.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2017-08-23 22:37:52 +00:00
|
|
|
tags:
|
2017-08-23 22:40:30 +00:00
|
|
|
- os.fedoraproject.org
|
2017-05-12 14:29:04 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: app.os.fedoraproject.org
|
|
|
|
server_aliases: ["*.app.os.fedoraproject.org", "*.app.os.stg.fedoraproject.org"]
|
|
|
|
sslonly: true
|
2017-06-12 18:55:49 +00:00
|
|
|
cert_name: "{{os_wildcard_cert_name}}"
|
2017-08-22 20:16:48 +00:00
|
|
|
SSLCertificateChainFile: "{{os_wildcard_int_file}}"
|
2017-08-23 22:37:52 +00:00
|
|
|
tags:
|
2017-08-23 22:40:30 +00:00
|
|
|
- app.os.fedoraproject.org
|
2016-04-05 17:18:31 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: registry.fedoraproject.org
|
2016-04-05 17:37:48 +00:00
|
|
|
server_aliases: [registry.stg.fedoraproject.org]
|
2016-04-05 17:18:31 +00:00
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2016-08-29 16:44:36 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: candidate-registry.fedoraproject.org
|
|
|
|
server_aliases: [candidate-registry.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2016-06-06 21:02:26 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: retrace.fedoraproject.org
|
|
|
|
server_aliases: [retrace.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
when: env == "staging"
|
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: faf.fedoraproject.org
|
|
|
|
server_aliases: [faf.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
when: env == "staging"
|
|
|
|
|
2016-06-06 22:31:04 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: alt.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- alt.stg.fedoraproject.org
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2014-12-08 14:24:46 +00:00
|
|
|
# Kinda silly that we have two entries here, one for prod and one for stg.
|
|
|
|
# This is inherited from our puppet setup -- we can collapse them as soon as
|
|
|
|
# is convenient. -- threebean
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: taskotron.fedoraproject.org
|
2014-12-08 14:24:46 +00:00
|
|
|
server_aliases: [taskotron.fedoraproject.org]
|
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:24:46 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: taskotron.stg.fedoraproject.org
|
2014-12-08 14:07:27 +00:00
|
|
|
server_aliases: [taskotron.stg.fedoraproject.org]
|
2014-12-08 14:24:46 +00:00
|
|
|
# Set this explicitly to stg here.. as per the original puppet config.
|
2017-02-01 23:39:23 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.stg.fedoraproject.org.intermediate.cert
|
2014-12-08 14:07:27 +00:00
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:24:46 +00:00
|
|
|
when: env == "staging"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: lists.fedoraproject.org
|
|
|
|
server_aliases: [lists.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
2016-05-18 20:05:24 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: lists.fedorahosted.org
|
|
|
|
server_aliases: [lists.stg.fedorahosted.org]
|
|
|
|
sslonly: true
|
2017-02-02 21:59:26 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.fedorahosted.org.intermediate.cert
|
|
|
|
cert_name: wildcard-2017.fedorahosted.org
|
2016-05-18 20:05:24 +00:00
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: id.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- "*.id.fedoraproject.org"
|
2015-02-21 01:45:41 +01:00
|
|
|
# Must not be sslonly, because example.id.fedoraproject.org must be reachable
|
|
|
|
# via plain http for openid identity support
|
2017-02-01 23:39:23 +00:00
|
|
|
cert_name: wildcard-2017.id.fedoraproject.org
|
|
|
|
SSLCertificateChainFile: wildcard-2017.id.fedoraproject.org.intermediate.cert
|
2015-01-19 19:16:26 +00:00
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: id.stg.fedoraproject.org
|
|
|
|
server_aliases:
|
|
|
|
- "*.id.stg.fedoraproject.org"
|
2015-02-21 01:45:41 +01:00
|
|
|
# Must not be sslonly, because example.id.fedoraproject.org must be reachable
|
|
|
|
# via plain http for openid identity support
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2017-02-01 23:39:23 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.stg.fedoraproject.org.intermediate.cert
|
2014-12-08 14:07:27 +00:00
|
|
|
when: env == "staging"
|
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: getfedora.org
|
2015-03-14 19:06:15 +00:00
|
|
|
server_aliases: [stg.getfedora.org]
|
2014-12-08 14:07:27 +00:00
|
|
|
sslonly: true
|
|
|
|
cert_name: getfedora.org
|
|
|
|
SSLCertificateChainFile: getfedora.org.intermediate.cert
|
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: qa.fedoraproject.org
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
sslonly: true
|
|
|
|
|
2015-11-13 17:37:34 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: openqa.fedoraproject.org
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
server_aliases: [openqa.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
|
2014-12-08 14:07:27 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: redirect.fedoraproject.org
|
|
|
|
server_aliases: [redirect.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
gzip: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2014-12-08 14:07:27 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: geoip.fedoraproject.org
|
|
|
|
server_aliases: [geoip.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
2015-01-19 19:16:26 +00:00
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2015-05-08 22:17:36 +00:00
|
|
|
|
2016-04-22 21:33:42 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: codecs.fedoraproject.org
|
|
|
|
server_aliases: [codecs.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2016-04-14 03:56:32 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: beaker.qa.fedoraproject.org
|
|
|
|
server_aliases: [beaker.qa.fedoraproject.org]
|
|
|
|
# Set this explicitly to stg here.. as per the original puppet config.
|
|
|
|
SSLCertificateChainFile: qa.fedoraproject.org.intermediate.cert
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "qa.fedoraproject.org"
|
|
|
|
|
2015-05-08 22:17:36 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: beaker.stg.fedoraproject.org
|
|
|
|
server_aliases: [beaker.stg.fedoraproject.org]
|
|
|
|
# Set this explicitly to stg here.. as per the original puppet config.
|
2017-02-01 23:39:23 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.stg.fedoraproject.org.intermediate.cert
|
2015-05-08 22:17:36 +00:00
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
when: env == "staging"
|
|
|
|
|
2016-02-02 15:07:42 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: qa.stg.fedoraproject.org
|
2016-02-02 16:48:46 +00:00
|
|
|
server_aliases: [qa.stg.fedoraproject.org]
|
2016-02-12 07:42:30 +00:00
|
|
|
cert_name: qa.stg.fedoraproject.org
|
2016-02-02 15:07:42 +00:00
|
|
|
SSLCertificateChainFile: qa.stg.fedoraproject.org.intermediate.cert
|
|
|
|
sslonly: true
|
|
|
|
when: env == "staging"
|
|
|
|
|
2016-02-02 16:48:46 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: phab.qa.stg.fedoraproject.org
|
|
|
|
server_aliases: [phab.qa.stg.fedoraproject.org]
|
2016-02-12 07:42:30 +00:00
|
|
|
cert_name: qa.stg.fedoraproject.org
|
2016-02-02 16:48:46 +00:00
|
|
|
SSLCertificateChainFile: qa.stg.fedoraproject.org.intermediate.cert
|
|
|
|
sslonly: true
|
|
|
|
when: env == "staging"
|
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: docs.qa.stg.fedoraproject.org
|
|
|
|
server_aliases: [docs.qa.stg.fedoraproject.org]
|
2016-02-12 07:42:30 +00:00
|
|
|
cert_name: qa.stg.fedoraproject.org
|
2016-02-02 16:48:46 +00:00
|
|
|
SSLCertificateChainFile: qa.stg.fedoraproject.org.intermediate.cert
|
|
|
|
sslonly: true
|
|
|
|
when: env == "staging"
|
2016-12-15 21:16:24 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: phab.qa.fedoraproject.org
|
|
|
|
server_aliases: [phab.qa.fedoraproject.org]
|
|
|
|
cert_name: qa.fedoraproject.org
|
|
|
|
SSLCertificateChainFile: qa.fedoraproject.org.intermediate.cert
|
|
|
|
sslonly: true
|
|
|
|
|
2017-04-19 19:27:34 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: data-analysis.fedoraproject.org
|
|
|
|
server_aliases: [data-analysis.stg.fedoraproject.org]
|
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
|
2016-12-15 21:16:24 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: docs.qa.fedoraproject.org
|
|
|
|
server_aliases: [docs.qa.fedoraproject.org]
|
|
|
|
cert_name: qa.fedoraproject.org
|
|
|
|
SSLCertificateChainFile: qa.fedoraproject.org.intermediate.cert
|
|
|
|
sslonly: true
|
2017-01-09 19:43:58 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
2017-04-04 13:54:21 +00:00
|
|
|
name: nagios.fedoraproject.org
|
2017-04-24 16:31:53 +00:00
|
|
|
server_aliases: [nagios.stg.fedoraproject.org]
|
2017-04-19 19:27:34 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.fedoraproject.org.intermediate.cert
|
2017-01-09 19:43:58 +00:00
|
|
|
sslonly: true
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2017-02-01 12:36:19 +00:00
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: mbs.fedoraproject.org
|
|
|
|
sslonly: true
|
|
|
|
server_aliases: [mbs.stg.fedoraproject.org]
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
2017-04-11 16:51:55 +00:00
|
|
|
|
2017-09-25 18:01:11 +00:00
|
|
|
- role: httpd/website
|
|
|
|
name: odcs.fedoraproject.org
|
|
|
|
sslonly: true
|
|
|
|
server_aliases: [odcs.stg.fedoraproject.org]
|
|
|
|
cert_name: "{{wildcard_cert_name}}"
|
|
|
|
when: env == "staging"
|
|
|
|
|
2017-04-11 16:51:55 +00:00
|
|
|
# fedorahosted is retired. We have the site here so we can redirect it.
|
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: fedorahosted.org
|
|
|
|
sslonly: true
|
2017-04-11 17:41:55 +00:00
|
|
|
server_aliases: [bzr.fedorahosted.org hg.fedorahosted.org svn.fedorahosted.org]
|
2017-04-11 16:51:55 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.fedorahosted.org.intermediate.cert
|
|
|
|
cert_name: wildcard-2017.fedorahosted.org
|
|
|
|
|
|
|
|
- role: httpd/website
|
|
|
|
name: git.fedorahosted.org
|
|
|
|
sslonly: true
|
|
|
|
SSLCertificateChainFile: wildcard-2017.fedorahosted.org.intermediate.cert
|
|
|
|
cert_name: wildcard-2017.fedorahosted.org
|