mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-15 06:44:22 +02:00
72 lines
2.6 KiB
Diff
72 lines
2.6 KiB
Diff
From 2a1fe11fab2e43d9c00aae699108e75e8185715b 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 b5f5e9d..d9e5bd1 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.2
|
|
+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 61747cb..8fec78c 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.9.4
|
|
|