diff options
author | Patrick Uiterwijk <puiterwijk@redhat.com> | 2016-04-05 17:49:25 +0000 |
---|---|---|
committer | Patrick Uiterwijk <puiterwijk@redhat.com> | 2016-04-05 17:49:43 +0000 |
commit | 02e7acf4874add2c2402f9922bd44149dadc962c (patch) | |
tree | 575614a5070e620f9f8d30a69171721a7b4f78be | |
parent | 33e9460e07ee2dfb0b1e2cf0e72f99323b176acd (diff) | |
download | ansible-02e7acf4874add2c2402f9922bd44149dadc962c.tar.gz ansible-02e7acf4874add2c2402f9922bd44149dadc962c.tar.xz ansible-02e7acf4874add2c2402f9922bd44149dadc962c.zip |
For osbs and docker, we have internal SSL as well as external
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
-rw-r--r-- | roles/haproxy/templates/haproxy.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/haproxy/templates/haproxy.cfg b/roles/haproxy/templates/haproxy.cfg index 12fdc0c3b..c79626678 100644 --- a/roles/haproxy/templates/haproxy.cfg +++ b/roles/haproxy/templates/haproxy.cfg @@ -298,13 +298,13 @@ listen zanata2fedmsg 0.0.0.0:10046 {% if env == "staging" %} listen osbs 0.0.0.0:10047 balance hdr(appserver) - server osbs-master01 osbs-master01:80 check inter 10s rise 1 fall 2 + server osbs-master01 osbs-master01:443 check inter 10s rise 1 fall 2 check ssl verify none {% endif %} {% if env == "staging" %} listen docker-registry 0.0.0.0:10048 balance hdr(appserver) - server docker-registry01 docker-registry01:80 check inter 10s rise 1 fall 2 + server docker-registry01 docker-registry01:443 check inter 10s rise 1 fall 2 check ssl verify none {% endif %} {% if env == "staging" %} |