mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
Use Require instead of Deny directive. Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
16 lines
444 B
Plaintext
16 lines
444 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>
|
|
Require all denied
|
|
</IfModule>
|