mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-18 09:10:49 +00:00
- Indentation for HTML template consistent with other templates. - Style 'repro' like the upstream project does in all small case. - Better describe the functions of a SIP server and organize the actions to be done by the user. - Set the menu weight so that it does not clash with an existing module. - Name the application 'SIP Server' instead of 'SIP Proxy' as that better describes the capabilities of the repro and is simpler for users to understand.
16 lines
432 B
Plaintext
16 lines
432 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
|
|
|
|
AuthType basic
|
|
AuthName "FreedomBox Login"
|
|
AuthBasicProvider ldap
|
|
AuthLDAPUrl "ldap:///ou=users,dc=thisbox?uid"
|
|
AuthLDAPGroupAttribute memberUid
|
|
AuthLDAPGroupAttributeIsDN off
|
|
Require ldap-group cn=admin,ou=groups,dc=thisbox
|
|
</Location>
|