mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
If pubtkt module is not enabled (rare) and if repro is enabled, Apache fails to start. Make sure this effects only repro module. The single-sign-on configuration already ensures that access is denied if pubtkt module is not enabled, preventing unauthorized access. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
12 lines
308 B
Plaintext
12 lines
308 B
Plaintext
##
|
|
## On all sites, provide repro admin interface on a path: /repro
|
|
## Only allow users of admin LDAP group.
|
|
##
|
|
<Location /repro>
|
|
ProxyPass http://localhost:5080
|
|
Include includes/freedombox-single-sign-on.conf
|
|
<IfModule mod_auth_pubtkt.c>
|
|
TKTAuthToken "admin"
|
|
</IfModule>
|
|
</Location>
|