Add 8443 for totp to proxies
Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
This commit is contained in:
parent
ca8cbe37be
commit
f5e2a0eabc
3 changed files with 28 additions and 0 deletions
|
@ -29,6 +29,9 @@ tcp_ports: [
|
||||||
# the apache reverseproxy at https://admin.fedoraproject.org/haproxy/proxy1
|
# the apache reverseproxy at https://admin.fedoraproject.org/haproxy/proxy1
|
||||||
8080,
|
8080,
|
||||||
|
|
||||||
|
# This is for TOTP
|
||||||
|
8443,
|
||||||
|
|
||||||
# For fedmsg websocket server over stunnel
|
# For fedmsg websocket server over stunnel
|
||||||
9939,
|
9939,
|
||||||
# For fedmsg raw zeromq socket (outbound)
|
# For fedmsg raw zeromq socket (outbound)
|
||||||
|
|
|
@ -29,6 +29,9 @@ tcp_ports: [
|
||||||
# the apache reverseproxy at https://admin.fedoraproject.org/haproxy/proxy1
|
# the apache reverseproxy at https://admin.fedoraproject.org/haproxy/proxy1
|
||||||
8080,
|
8080,
|
||||||
|
|
||||||
|
# This is for TOTP
|
||||||
|
8443,
|
||||||
|
|
||||||
# For fedmsg websocket server over stunnel
|
# For fedmsg websocket server over stunnel
|
||||||
9939,
|
9939,
|
||||||
# For fedmsg raw zeromq socket (outbound)
|
# For fedmsg raw zeromq socket (outbound)
|
||||||
|
|
|
@ -383,6 +383,28 @@ backend ipa-backend
|
||||||
{% endif %}
|
{% endif %}
|
||||||
option httpchk GET /ipa/ui/
|
option httpchk GET /ipa/ui/
|
||||||
|
|
||||||
|
# This is for TOTPCGI (legacy 2fa). It goes to the Openshift routers, which then passthrough TLS to the totpcgi pods
|
||||||
|
frontend totp-frontend
|
||||||
|
mode tcp
|
||||||
|
bind 0.0.0.0:8443
|
||||||
|
default_backend totp-backend
|
||||||
|
|
||||||
|
backend totp-backend
|
||||||
|
mode tcp
|
||||||
|
option tcplog
|
||||||
|
balance roundrobin
|
||||||
|
maxconn 16384
|
||||||
|
timeout queue 5000
|
||||||
|
timeout server 86400000
|
||||||
|
timeout connect 86400000
|
||||||
|
server os-node01 os-node01:443 weight 1 maxconn 16384
|
||||||
|
server os-node02 os-node02:443 weight 1 maxconn 16384
|
||||||
|
server os-node03 os-node03:443 weight 1 maxconn 16384
|
||||||
|
server os-node04 os-node04:443 weight 1 maxconn 16384
|
||||||
|
{% if env == "production" %}
|
||||||
|
server os-node05 os-node05:443 weight 1 maxconn 16384
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
frontend krb5-frontend
|
frontend krb5-frontend
|
||||||
mode tcp
|
mode tcp
|
||||||
bind 0.0.0.0:1088
|
bind 0.0.0.0:1088
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue