mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-08-03 17:59:24 -04:00

* Make SASL login work on bookstack with Anubis * chore: spelling Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net> Co-authored-by: Xe Iaso <me@xeiaso.net>
21 lines
547 B
YAML
21 lines
547 B
YAML
# Make SASL login work on bookstack with Anubis
|
|
# https://www.bookstackapp.com/docs/admin/saml2-auth/
|
|
- name: allow-bookstack-sasl-login-routes
|
|
action: ALLOW
|
|
expression:
|
|
all:
|
|
- 'method == "POST"'
|
|
- path.startsWith("/saml2/acs")
|
|
- name: allow-bookstack-sasl-metadata-routes
|
|
action: ALLOW
|
|
expression:
|
|
all:
|
|
- 'method == "GET"'
|
|
- path.startsWith("/saml2/metadata")
|
|
- name: allow-bookstack-sasl-logout-routes
|
|
action: ALLOW
|
|
expression:
|
|
all:
|
|
- 'method == "GET"'
|
|
- path.startsWith("/saml2/sls")
|