1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
From e84023a765cff2a2c75b1176db4f7e962c2e80c8 Mon Sep 17 00:00:00 2001
From: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
Date: Fri, 11 Sep 2015 15:12:08 +0300
Subject: [PATCH 14/14] httpd*.conf: LoadModule
---
docs/conf/extra/httpd-dav.conf.in | 3 +++
docs/conf/extra/httpd-ssl.conf.in | 2 ++
docs/conf/extra/proxy-html.conf.in | 6 +++---
docs/conf/httpd.conf.in | 2 ++
4 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/docs/conf/extra/httpd-dav.conf.in b/docs/conf/extra/httpd-dav.conf.in
index 416110b..0ddcb48 100644
--- a/docs/conf/extra/httpd-dav.conf.in
+++ b/docs/conf/extra/httpd-dav.conf.in
@@ -4,6 +4,9 @@
# Required modules: mod_alias, mod_auth_digest, mod_authn_core, mod_authn_file,
# mod_authz_core, mod_authz_user, mod_dav, mod_dav_fs,
# mod_setenvif
+LoadModule auth_digest_module modules/mod_auth_digest.so
+LoadModule dav_module modules/mod_dav.so
+LoadModule dav_fs_module modules/mod_dav_fs.so
# The following example gives DAV write access to a directory called
# "uploads" under the ServerRoot directory.
diff --git a/docs/conf/extra/httpd-ssl.conf.in b/docs/conf/extra/httpd-ssl.conf.in
index 4534852..b5bcb5d 100644
--- a/docs/conf/extra/httpd-ssl.conf.in
+++ b/docs/conf/extra/httpd-ssl.conf.in
@@ -10,6 +10,8 @@
#
# Required modules: mod_log_config, mod_setenvif, mod_ssl,
# socache_shmcb_module (for default value of SSLSessionCache)
+LoadModule ssl_module modules/mod_ssl.so
+LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
#
# Pseudo Random Number Generator (PRNG):
diff --git a/docs/conf/extra/proxy-html.conf.in b/docs/conf/extra/proxy-html.conf.in
index 683a091..0648e8e 100644
--- a/docs/conf/extra/proxy-html.conf.in
+++ b/docs/conf/extra/proxy-html.conf.in
@@ -10,9 +10,9 @@
# mangle pages in encodings other than ASCII or Unicode (utf-8).
#
# For Unix-family systems:
-# LoadFile /usr/lib/libxml2.so
-# LoadModule proxy_html_module modules/mod_proxy_html.so
-# LoadModule xml2enc_module modules/mod_xml2enc.so
+LoadFile /usr/lib/libxml2.so
+LoadModule proxy_html_module modules/mod_proxy_html.so
+LoadModule xml2enc_module modules/mod_xml2enc.so
#
# For Windows (I don't know if there's a standard path for the libraries)
# LoadFile C:/path/zlib.dll
diff --git a/docs/conf/httpd.conf.in b/docs/conf/httpd.conf.in
index c6092b3..929ebfc 100644
--- a/docs/conf/httpd.conf.in
+++ b/docs/conf/httpd.conf.in
@@ -75,6 +75,8 @@ Listen @@Port@@
#
@@LoadModule@@
+LoadModule negotiation_module lib/apache2/mod_negotiation.so
+
<IfModule unixd_module>
#
# If you wish httpd to run as a different user or group, you must run
--
2.5.0
|