Fix using Apache httpd 2.2

This commit is contained in:
Eelco Dolstra 2014-12-15 13:04:33 +01:00
parent 604ab0387a
commit cfe26e4438

View file

@ -98,9 +98,6 @@ let
# Authorization: is the user allowed access? # Authorization: is the user allowed access?
"authz_user" "authz_groupfile" "authz_host" "authz_user" "authz_groupfile" "authz_host"
# For compatibility with old configurations, the new module mod_access_compat is provided.
(if version24 then "access_compat" else "")
# Other modules. # Other modules.
"ext_filter" "include" "log_config" "env" "mime_magic" "ext_filter" "include" "log_config" "env" "mime_magic"
"cern_meta" "expires" "headers" "usertrack" /* "unique_id" */ "setenvif" "cern_meta" "expires" "headers" "usertrack" /* "unique_id" */ "setenvif"
@ -115,6 +112,8 @@ let
"cache" "cache_disk" "cache" "cache_disk"
"slotmem_shm" "slotmem_shm"
"socache_shmcb" "socache_shmcb"
# For compatibility with old configurations, the new module mod_access_compat is provided.
"access_compat"
] ]
++ (if mainCfg.multiProcessingModule == "prefork" then [ "cgi" ] else [ "cgid" ]) ++ (if mainCfg.multiProcessingModule == "prefork" then [ "cgi" ] else [ "cgid" ])
++ optional enableSSL "ssl" ++ optional enableSSL "ssl"