summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stewart <vericgar@gentoo.org>2006-02-15 05:40:02 +0000
committerMichael Stewart <vericgar@gentoo.org>2006-02-15 05:40:02 +0000
commitaf2ce3b002419009287115f67c56544b0b238f3b (patch)
treef2391664c6de1794143d2c67cec2033722497fe6 /2.2/init/apache2.confd
parentNew patch for apache 1.3 that addresses CVE-2005-3352. Fixes bug 118875 (diff)
downloadapache-af2ce3b002419009287115f67c56544b0b238f3b.tar.gz
apache-af2ce3b002419009287115f67c56544b0b238f3b.tar.bz2
apache-af2ce3b002419009287115f67c56544b0b238f3b.zip
Create work area for apache-2.2
Diffstat (limited to '2.2/init/apache2.confd')
-rw-r--r--2.2/init/apache2.confd46
1 files changed, 46 insertions, 0 deletions
diff --git a/2.2/init/apache2.confd b/2.2/init/apache2.confd
new file mode 100644
index 0000000..832a7a7
--- /dev/null
+++ b/2.2/init/apache2.confd
@@ -0,0 +1,46 @@
+# /etc/conf.d/apache2: config file for /etc/init.d/apache2
+
+# When you install a module it is easy to activate or deactivate the modules
+# and other features of apache using the APACHE2_OPTS line. Every module should
+# install a configuration in /etc/apache2/modules.d. In that file will be an
+# <IfDefine NNN> where NNN is the option to enable that module.
+# Here are the options available in the default configuration:
+# USERDIR Enables /~username mapping to /home/username/public_html
+# INFO Enables mod_info, a useful module for debugging
+# PROXY Enables mod_proxy
+# DAV Enables mod_dav
+# DAV_FS Enables mod_dav_fs (you should enable this when you enable DAV
+# unless you know what you are doing)
+# SSL Enables SSL
+# SSL_DEFAULT_VHOST Enables default vhost for SSL (you should enable this
+# when you enable SSL unless you know what you are doing)
+# LDAP Enables mod_ldap
+# AUTH_LDAP Enables authentication through mod_ldap
+# DEFAULT_VHOST Enables the default virtual host in /var/www/localhost/htdocs
+APACHE2_OPTS="-D DEFAULT_VHOST"
+
+# Extended options for advanced uses of Apache ONLY
+# You don't need to edit these unless you are doing crazy Apache stuff
+# As not having them set correctly, or feeding in an incorrect configuration
+# via them will result in Apache failing to start
+# YOU HAVE BEEN WARNED.
+
+# ServerRoot setting
+#SERVERROOT=/usr/lib/apache2
+
+# Configuration file location
+# - If this does NOT start with a '/', then it is treated relative to
+# $SERVERROOT by Apache
+#CONFIGFILE=/etc/apache2/httpd.conf
+
+# Location to log startup errors to
+# They are normally dumped to your terminal.
+#STARTUPERRORLOG="/var/log/apache2/startuperror.log"
+
+# Environment variables to keep
+# All environment variables are cleared from apache
+# Use this to preserve some of them
+# NOTE!!! It's very important that this contains PATH
+# Also, it will fail if the _value_ of any of these variables contains a space
+KEEPENV="PATH"
+