Configuring Apache authentication using the request header
Configure an Apache authentication proxy with the mod_auth_gssapi module for the request header identity provider. Use this example to set up a proxy that validates users and forwards trusted identity headers to Red Hat OpenShift Container Platform.
This proxy uses a client certificate to connect to the OAuth server, which is configured to trust the X-Remote-User header.
-
Obtain the
mod_auth_gssapimodule from the optional channel. For more information, see "Optional channel". -
The following packages are installed on your local machine:
-
httpd -
mod_ssl -
mod_session -
apr-util-openssl -
mod_auth_gssapi
-
-
Generate a CA for validating requests that submit the trusted header.
-
Create an Red Hat OpenShift Container Platform
ConfigMapobject containing the CA by running the following command:$ oc create configmap ca-config-map --from-file=ca.crt=/path/to/ca -n openshift-config -
Optional: Apply the following YAML to create the config map. For example:
apiVersion: v1 kind: ConfigMap metadata: name: ca-config-map namespace: openshift-config data: ca.crt: | <CA_certificate_PEM>The certificate authority must be stored in the
ca.crtkey of theConfigMapobject. -
Generate a client certificate for the proxy.
You can generate this certificate by using any x509 certificate tooling. The client certificate must be signed by the CA you generated for validating requests that submit the trusted header.
-
Create the custom resource (CR) for your identity providers.
-
Create the certificate for the Apache configuration.
The certificate that you specify as the
SSLProxyMachineCertificateFileparameter value is the client certificate for the proxy that authenticates the proxy to the server. It must useTLS Web Client Authenticationas the extended key type. -
Create the Apache configuration. Use the following template to provide your required settings and values:
Carefully review the template and customize the template contents to fit your environment.
LoadModule request_module modules/mod_request.so LoadModule auth_gssapi_module modules/mod_auth_gssapi.so # Some Apache configurations might require these modules. # LoadModule auth_form_module modules/mod_auth_form.so # LoadModule session_module modules/mod_session.so # Nothing needs to be served over HTTP. This virtual host simply redirects to # HTTPS. <VirtualHost *:80> DocumentRoot /var/www/html RewriteEngine On RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R,L] </VirtualHost> <VirtualHost *:443> # This needs to match the certificates you generated. See the CN and X509v3 # Subject Alternative Name in the output of: # openssl x509 -text -in /etc/pki/tls/certs/localhost.crt ServerName www.example.com DocumentRoot /var/www/html SSLEngine on SSLCertificateFile /etc/pki/tls/certs/localhost.crt SSLCertificateKeyFile /etc/pki/tls/private/localhost.key SSLCACertificateFile /etc/pki/CA/certs/ca.crt SSLProxyEngine on SSLProxyCACertificateFile /etc/pki/CA/certs/ca.crt # It is critical to enforce client certificates. Otherwise, requests can # spoof the X-Remote-User header by accessing the /oauth/authorize endpoint # directly. SSLProxyMachineCertificateFile /etc/pki/tls/certs/authproxy.pem # To use the challenging-proxy, an X-Csrf-Token must be present. RewriteCond %{REQUEST_URI} ^/challenging-proxy RewriteCond %{HTTP:X-Csrf-Token} ^$ [NC] RewriteRule ^.* - [F,L] <Location /challenging-proxy/oauth/authorize> # Insert your backend server name/ip here. ProxyPass https://<namespace_route>/oauth/authorize AuthName "SSO Login" # For Kerberos AuthType GSSAPI Require valid-user RequestHeader set X-Remote-User %{REMOTE_USER}s GssapiCredStore keytab:/etc/httpd/protected/auth-proxy.keytab # Enable the following if you want to allow users to fallback # to password based authentication when they do not have a client # configured to perform kerberos authentication. GssapiBasicAuth On # For ldap: # AuthBasicProvider ldap # AuthLDAPURL "ldap://ldap.example.com:389/ou=People,dc=my-domain,dc=com?uid?sub?(objectClass=*)" </Location> <Location /login-proxy/oauth/authorize> # Insert your backend server name/ip here. ProxyPass https://<namespace_route>/oauth/authorize AuthName "SSO Login" AuthType GSSAPI Require valid-user RequestHeader set X-Remote-User %{REMOTE_USER}s env=REMOTE_USER GssapiCredStore keytab:/etc/httpd/protected/auth-proxy.keytab # Enable the following if you want to allow users to fallback # to password based authentication when they do not have a client # configured to perform kerberos authentication. GssapiBasicAuth On ErrorDocument 401 /login.html </Location> </VirtualHost> RequestHeader unset X-Remote-UserThe
https://<namespace_route>address is the route to the OAuth server and can be obtained by runningoc get route -n openshift-authentication. -
Update the
identityProviderssection of the custom resource (CR):identityProviders: - name: requestheaderidp type: RequestHeader requestHeader: challengeURL: "https://<namespace_route>/challenging-proxy/oauth/authorize?${query}" loginURL: "https://<namespace_route>/login-proxy/oauth/authorize?${query}" ca: name: ca-config-map clientCommonNames: - my-auth-proxy headers: - X-Remote-User
-
Confirm that you can bypass the proxy when you supply the correct client certificate and header by running the following command:
$ curl -L -k -H "X-Remote-User: joe" \ --cert /etc/pki/tls/certs/authproxy.pem \ https://<namespace_route>/oauth/token/request -
Confirm that requests that do not supply the client certificate fail by running the following command:
$ curl -L -k -H "X-Remote-User: joe" \ https://<namespace_route>/oauth/token/request -
Confirm that the
challengeURLredirect is active by running the following command:$ curl -k -v -H 'X-Csrf-Token: 1' \ https://<namespace_route>/oauth/authorize?client_id=openshift-challenging-client&response_type=tokenCopy the
challengeURLredirect to use in the next step. -
Show a
401response with aWWW-Authenticatebasic challenge, a negotiate challenge, or both challenges by running the following command:$ curl -k -v -H 'X-Csrf-Token: 1' \ <challengeURL_redirect + query> -
If you generated a Kerberos ticket by using
kinit, destroy it by running the following command:$ kdestroy -c <cache_name>Replace
<cache_name>with the name of your Kerberos cache. -
Log in to the OpenShift CLI (
oc) with your Kerberos credentials by running the following command:$ oc login -u <username>Enter your Kerberos username and password at the prompt.
-
Log out of the
octool by running the following command:$ oc logout -
Use your Kerberos credentials to get a ticket by running the following command:
$ kinitEnter your Kerberos username and password at the prompt.
-
Confirm that you can log in to the
octool by running the following command:$ oc loginIf your configuration is correct, you are logged in without entering separate credentials.