From 57969429a911c839b44e93a7fa846cd7b9e0c531 Mon Sep 17 00:00:00 2001 From: Jeff Ohrstrom Date: Thu, 14 Sep 2023 13:45:08 -0400 Subject: [PATCH] correct the packages to install for ADFS mellon --- .../authentication/adfs-with-auth-mellon.rst | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/source/authentication/adfs-with-auth-mellon.rst b/source/authentication/adfs-with-auth-mellon.rst index 5e455d97b..0e91bc045 100644 --- a/source/authentication/adfs-with-auth-mellon.rst +++ b/source/authentication/adfs-with-auth-mellon.rst @@ -19,10 +19,26 @@ Install mod_auth_mellon #. Ensure Software Collections is enabled on the system #. Install the mod_auth_mellon module: - .. code-block:: shell +.. tabs:: + + .. tab:: EL7 + + .. code-block:: shell yum install httpd24-mod_auth_mellon httpd24-mod_ssl + .. tab:: EL8+ + + .. code-block:: shell + + yum install mod_auth_mellon mod_ssl + + .. tab:: Ubuntu + + .. code-block:: shell + + apt install libapache2-mod-auth-mellon + Configure mod_auth_mellon --------------------------------------------------