-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement returning LDAP attribs to Nginx. Bump version 0.2.0
- Loading branch information
Showing
9 changed files
with
125 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
ldap_authz_proxy (0.2-1) unstable; urgency=low | ||
|
||
* New feature: return LDAP attributes in response headers | ||
|
||
-- Jarno Elonen <[email protected]> Sat, 28 Jan 2023 23:08:00 +0000 | ||
|
||
ldap_authz_proxy (0.1-1) unstable; urgency=low | ||
|
||
* First release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,8 @@ services: | |
samba-tool domain passwordsettings set --max-pwd-age=0 | ||
# CN=service,CN=Users,DC=example,DC=test | ||
samba-tool user create service password123 --use-username-as-cn | ||
samba-tool user create alice password123 --use-username-as-cn | ||
samba-tool user create bob password123 --use-username-as-cn | ||
samba-tool user create alice password123 --use-username-as-cn --given-name=Alice --surname=Alison --mail-address="[email protected]" | ||
samba-tool user create bob password123 --use-username-as-cn --given-name=Bob --surname=Bobrikov --mail-address="[email protected]" | ||
# CN=ACL_Users,CN=Users,DC=example,DC=test | ||
samba-tool group add ACL_Users | ||
samba-tool group add ACL_Admins | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters