specifying docs.qa.stg and phab.qa.stg directly

This commit is contained in:
Tim Flink 2016-02-02 16:48:46 +00:00
parent 2b4f31cb5f
commit e2701f0ac1
2 changed files with 23 additions and 1 deletions

View file

@ -450,6 +450,13 @@
proxyurl: http://phab.qa-stg01.qa.fedoraproject.org
when: env == "staging"
- role: httpd/reverseproxy
website: docs.qa.stg.fedoraproject.org
destname: qa-stg-docs
# Talk directly to the app server, not haproxy
proxyurl: http://docs.qa-stg01.qa.fedoraproject.org
when: env == "staging"
# This one gets its own role (instead of httpd/reverseproxy) so that it can
# copy in some silly static resources (globe.png, index.html)
- role: geoip-city-wsgi/proxy

View file

@ -547,9 +547,24 @@
- role: httpd/website
name: qa.stg.fedoraproject.org
server_aliases: [phab.qa.stg.fedoraproject.org docs.qa.stg.fedoraproject.org]
server_aliases: [qa.stg.fedoraproject.org]
cert_name: qa.stg.fedoraproject.org.org
SSLCertificateChainFile: qa.stg.fedoraproject.org.intermediate.cert
sslonly: true
when: env == "staging"
- role: httpd/website
name: phab.qa.stg.fedoraproject.org
server_aliases: [phab.qa.stg.fedoraproject.org]
cert_name: qa.stg.fedoraproject.org.org
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]
cert_name: qa.stg.fedoraproject.org.org
SSLCertificateChainFile: qa.stg.fedoraproject.org.intermediate.cert
sslonly: true
when: env == "staging"