mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-22 10:01:45 +00:00
django-simple-captcha's /refresh url's regex was matching anything that ends with the word "refresh". This was clashing with sso/refresh. Changed the regex for captcha's url to captcha/refresh. Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
15 lines
438 B
Plaintext
15 lines
438 B
Plaintext
<IfModule mod_auth_pubtkt.c>
|
|
TKTAuthPublicKey /etc/apache2/auth-pubtkt-keys/pubkey.pem
|
|
TKTAuthLoginURL /plinth/accounts/sso/login/
|
|
TKTAuthBackArgName next
|
|
TKTAuthDigest SHA512
|
|
TKTAuthRefreshURL /plinth/accounts/sso/refresh/
|
|
TKTAuthUnauthURL /plinth
|
|
AuthType mod_auth_pubtkt
|
|
AuthName "FreedomBox Single Sign On"
|
|
Require valid-user
|
|
</IfModule>
|
|
|
|
<IfModule !mod_auth_pubtkt.c>
|
|
Deny from all
|
|
</IfModule> |