Skip to content

Commit c89ccc9

Browse files
authored
jicofo: reintroduce shibboleth auth
Fixes jitsi#956
1 parent a6486b4 commit c89ccc9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

jicofo/rootfs/defaults/jicofo.conf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,17 @@ jicofo {
99
// The type of authentication. Supported values are XMPP, JWT or SHIBBOLETH (default).
1010
{{ if eq $AUTH_TYPE "jwt" }}
1111
type = JWT
12+
{{ else if eq $AUTH_TYPE "shibboleth" }}
13+
type = SHIBBOLETH
1214
{{ else }}
1315
type = XMPP
1416
{{ end }}
17+
{{ if eq $AUTH_TYPE "shibboleth" }}
18+
login-url = "shibboleth:default"
19+
logout-url = "shibboleth:default"
20+
{{ else }}
1521
login-url = "{{ .Env.XMPP_DOMAIN }}"
22+
{{ end }}
1623
}
1724
{{ end }}
1825

0 commit comments

Comments
 (0)