summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-03-08 02:58:55 +0100
committerGitHub <noreply@github.com>2018-03-08 02:58:55 +0100
commit75d3e3657ab6d4ec915cc8f8e6658ac1df0de06c (patch)
tree26b84057aabc15b625860f6cf1713b03137584b6 /conf
parentd7d18223d3a4e879d0129dd63d33d93615664b33 (diff)
downloadbugzilla-75d3e3657ab6d4ec915cc8f8e6658ac1df0de06c.tar.gz
bugzilla-75d3e3657ab6d4ec915cc8f8e6658ac1df0de06c.tar.xz
no bug - load modules that apache needs to work with basic auth
Diffstat (limited to 'conf')
-rw-r--r--conf/httpd.conf11
1 files changed, 11 insertions, 0 deletions
diff --git a/conf/httpd.conf b/conf/httpd.conf
index c0e8b7570..20a21f5db 100644
--- a/conf/httpd.conf
+++ b/conf/httpd.conf
@@ -20,7 +20,18 @@ Listen ${PORT}
User app
Group app
+LoadModule auth_basic_module modules/mod_auth_basic.so
+LoadModule auth_digest_module modules/mod_auth_digest.so
+LoadModule authn_file_module modules/mod_authn_file.so
+LoadModule authn_alias_module modules/mod_authn_alias.so
+LoadModule authn_anon_module modules/mod_authn_anon.so
+LoadModule authn_dbm_module modules/mod_authn_dbm.so
+LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authz_host_module modules/mod_authz_host.so
+LoadModule authz_user_module modules/mod_authz_user.so
+LoadModule authz_owner_module modules/mod_authz_owner.so
+LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
+LoadModule authz_default_module modules/mod_authz_default.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule env_module modules/mod_env.so
LoadModule mime_magic_module modules/mod_mime_magic.so