From 14c5c845070b86e63474cd17c8e7585762ac92bc Mon Sep 17 00:00:00 2001 From: oscwiag Date: Mon, 5 Aug 2024 13:42:44 +0000 Subject: [PATCH] [ci skip] Autodoc commit for f71f21882beaf42d661404d3359ef194c07ef3e4. --- develop/_sources/authentication/shibboleth.rst.txt | 4 ++-- develop/authentication/shibboleth.html | 4 ++-- develop/searchindex.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/develop/_sources/authentication/shibboleth.rst.txt b/develop/_sources/authentication/shibboleth.rst.txt index c7a5285e5..3cdcc968c 100644 --- a/develop/_sources/authentication/shibboleth.rst.txt +++ b/develop/_sources/authentication/shibboleth.rst.txt @@ -47,12 +47,12 @@ such: logout_redirect: /Shibboleth.sso/Logout?return=https%3A%2F%2Fidp.my-center.edu%2Fidp%2Fprofile%2FLogout # Capture system user name from authenticated user name - user_map_cmd: "/opt/ood/ood_auth_map/bin/ood_auth_map.regex --regex='^(\\w+)@my-center.edu'" + user_map_match: '([^@]+)@my-center.edu' In the example above: -- The ``user_map_cmd`` uses regular expressions to map the authenticated user +- The ``user_map_match`` uses regular expressions to map the authenticated user ``bob@my-center.edu`` to their system user name ``bob``. - The ``RequestHeader`` settings are used to strip private session information from being sent to the backend web servers. diff --git a/develop/authentication/shibboleth.html b/develop/authentication/shibboleth.html index 722f97903..86dc5c36d 100644 --- a/develop/authentication/shibboleth.html +++ b/develop/authentication/shibboleth.html @@ -261,12 +261,12 @@ logout_redirect: /Shibboleth.sso/Logout?return=https%3A%2F%2Fidp.my-center.edu%2Fidp%2Fprofile%2FLogout # Capture system user name from authenticated user name -user_map_cmd: "/opt/ood/ood_auth_map/bin/ood_auth_map.regex --regex='^(\\w+)@my-center.edu'" +user_map_match: '([^@]+)@my-center.edu'

In the example above: