Create app.os.fp.o

Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
Patrick Uiterwijk 2017-05-12 14:29:04 +00:00
parent 424ff4d41f
commit 3fa5e3123b
3 changed files with 20 additions and 2 deletions

View file

@ -614,6 +614,12 @@
proxyurl: http://localhost:10064
keephost: true
- role: httpd/reverseproxy
website: app.os.fedoraproject.org
destname: app.os
proxyurl: http://localhost:10065
keephost: true
- role: httpd/reverseproxy
website: data-analysis.fedoraproject.org
destname: awstats

View file

@ -562,6 +562,12 @@
sslonly: true
cert_name: "{{wildcard_cert_name}}"
- role: httpd/website
name: app.os.fedoraproject.org
server_aliases: ["*.app.os.fedoraproject.org", "*.app.os.stg.fedoraproject.org"]
sslonly: true
cert_name: "{{wildcard_cert_name}}"
- role: httpd/website
name: registry.fedoraproject.org
server_aliases: [registry.stg.fedoraproject.org]

View file

@ -431,8 +431,14 @@ listen mbs 0.0.0.0:10063
listen os-master 0.0.0.0:10064
balance hdr(appserver)
server os-master01 os-master01:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
server os-master01 os-master02:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
server os-master01 os-master02:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
server os-master02 os-master02:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
server os-master03 os-master02:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
option httpchk GET /
listen os-master 0.0.0.0:10065
balance hdr(appserver)
server os-node01 os-node01:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
server os-node02 os-node02:443 check inter 10s rise 1 fall 2 ssl verify required ca-file /etc/haproxy/os-master.pem
option httpchk GET /
{% endif %}