summaryrefslogtreecommitdiff
path: root/INTERACT.md
diff options
context:
space:
mode:
Diffstat (limited to 'INTERACT.md')
-rw-r--r--INTERACT.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/INTERACT.md b/INTERACT.md
index 0ead9fe..1a770f0 100644
--- a/INTERACT.md
+++ b/INTERACT.md
@@ -57,3 +57,8 @@ Basic auth can be provided as a POST to /login/basic/.
<meta http-equiv="Refresh" content="1; url=/protected/">success with ldap
$ curl -X POST -L http://d2-03a:5000/login/basic/ -b ~/cookiejar.txt -c ~/cookiejar.txt --header "Authorization: Basic $( printf '%s' "${username}:${pw}" | base64 )"
<meta http-equiv="Refresh" content="1; url=/protected/">success with ldap
+
+To set any settings that are currently supported by the /protected/settings/ page, you need to be a member of the ldap group "admins."
+
+ $ curl -L http://d2-03a:5000/protected/settings/ -b ~/cookiejar.txt -c ~/cookiejar.txt -X POST --data 'ldap_uri=ldaps://dns1.ipa.example.com'
+ Settings updated:<ul><li>LDAP_URI</li></ul><form action='/protected/settings/' method='get'><input type='submit' value='Return to settings'/></form>
bgstack15