summaryrefslogtreecommitdiff
path: root/INTERACT.md
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-06-28 16:45:18 -0400
committerB. Stack <bgstack15@gmail.com>2021-06-28 16:45:18 -0400
commit26144a23f94c9cbddeb2ec2ba7d2513bb347ea8f (patch)
treeb449c2349adeb1bf5c4bbc7ca488105508d362f0 /INTERACT.md
parentclear session at logout (diff)
downloadsession_app-master.tar.gz
session_app-master.tar.bz2
session_app-master.zip
minor fixes, mostly cosmeticHEADmaster
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