-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix user being logged out after streaming video
The service call that streamed video was never returning, and that would cause an internal error in the web server that would invalidate the user's session and force them to log in again. This also adds support for configuring the LDAP server through environment variables that can be set on the Docker container. Signed-off-by: P. J. Reed <[email protected]>
- Loading branch information
Showing
7 changed files
with
303 additions
and
55 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
dn: ou=People,dc=example,dc=com | ||
objectClass: organizationalUnit | ||
ou: People | ||
|
||
dn: ou=Groups,dc=example,dc=com | ||
objectClass: organizationalUnit | ||
ou: Groups | ||
|
||
dn: cn=Artist,ou=Groups,dc=example,dc=com | ||
objectClass: posixGroup | ||
cn: SUBGROUP | ||
gidNumber: 5000 | ||
|
||
dn: uid=ben,ou=People,dc=example,dc=com | ||
objectClass: inetOrgPerson | ||
objectClass: posixAccount | ||
objectClass: shadowAccount | ||
uid: ben | ||
sn: Affleck | ||
givenName: Ben | ||
cn: Ben Affleck | ||
displayName: Ben | ||
uidNumber: 10001 | ||
gidNumber: 5000 | ||
userPassword: benspassword | ||
gecos: Ben Affleck | ||
loginShell: /bin/bash | ||
homeDirectory: USERDIRECTORY1 | ||
|
||
dn: uid=bob,ou=People,dc=example,dc=com | ||
objectClass: inetOrgPerson | ||
objectClass: posixAccount | ||
objectClass: shadowAccount | ||
uid: bob | ||
sn: Marley | ||
givenName: Bob | ||
cn: Bob Marley | ||
displayName: Bob | ||
uidNumber: 10002 | ||
gidNumber: 5000 | ||
userPassword: bobspassword | ||
gecos: Bob Marley | ||
loginShell: /bin/bash | ||
homeDirectory: USERDIRECTORY2 |
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
Oops, something went wrong.