summaryrefslogtreecommitdiffstats
path: root/tests/httpd.conf
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-07-04 11:11:16 -0400
committerSimo Sorce <simo@redhat.com>2015-07-04 11:18:43 -0400
commit47de8ee6c742264ff03e9e3786cca3dabbedff4c (patch)
tree2564a6785522307c5d9205e8bd4e5d636448b178 /tests/httpd.conf
parentecd5b7c10b3bf1a93ce3653f9d1557177d913855 (diff)
downloadmod_auth_gssapi-47de8ee6c742264ff03e9e3786cca3dabbedff4c.tar.gz
mod_auth_gssapi-47de8ee6c742264ff03e9e3786cca3dabbedff4c.tar.xz
mod_auth_gssapi-47de8ee6c742264ff03e9e3786cca3dabbedff4c.zip
Add basic auth test
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'tests/httpd.conf')
-rw-r--r--tests/httpd.conf12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/httpd.conf b/tests/httpd.conf
index 517203f..77701f9 100644
--- a/tests/httpd.conf
+++ b/tests/httpd.conf
@@ -132,3 +132,15 @@ CoreDumpDirectory /tmp
Require valid-user
</Location>
+<Location /basic_auth_krb5>
+ AuthType GSSAPI
+ AuthName "Password Login"
+ GssapiSSLonly Off
+ GssapiCredStore ccache:${HTTPROOT}/tmp/httpd_krb5_ccache
+ GssapiCredStore client_keytab:${HTTPROOT}/http.keytab
+ GssapiCredStore keytab:${HTTPROOT}/http.keytab
+ GssapiBasicAuth On
+ GssapiBasicAuthMech krb5
+ Require valid-user
+</Location>
+