jicofo: reintroduce shibboleth auth

Fixes #956
pull/970/head
duritong 4 years ago committed by GitHub
parent a6486b4555
commit c89ccc9727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      jicofo/rootfs/defaults/jicofo.conf

@ -9,10 +9,17 @@ jicofo {
// The type of authentication. Supported values are XMPP, JWT or SHIBBOLETH (default).
{{ if eq $AUTH_TYPE "jwt" }}
type = JWT
{{ else if eq $AUTH_TYPE "shibboleth" }}
type = SHIBBOLETH
{{ else }}
type = XMPP
{{ end }}
{{ if eq $AUTH_TYPE "shibboleth" }}
login-url = "shibboleth:default"
logout-url = "shibboleth:default"
{{ else }}
login-url = "{{ .Env.XMPP_DOMAIN }}"
{{ end }}
}
{{ end }}

Loading…
Cancel
Save