summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stewart <vericgar@gentoo.org>2006-11-02 04:46:52 +0000
committerMichael Stewart <vericgar@gentoo.org>2006-11-02 04:46:52 +0000
commitfd3c508f8ca7cf6ddddf8d960b6755de956982ae (patch)
tree646a424e31700ca5ccff8775d11d8ad5f6cd226a /2.2/init/apache2.confd
parentFix a typo (diff)
downloadapache-fd3c508f8ca7cf6ddddf8d960b6755de956982ae.tar.gz
apache-fd3c508f8ca7cf6ddddf8d960b6755de956982ae.tar.bz2
apache-fd3c508f8ca7cf6ddddf8d960b6755de956982ae.zip
Refactored init script to use start-stop-daemon. Also added the remaining options that were available in apache2ctl that we didn't have.
Diffstat (limited to '2.2/init/apache2.confd')
-rw-r--r--2.2/init/apache2.confd13
1 files changed, 9 insertions, 4 deletions
diff --git a/2.2/init/apache2.confd b/2.2/init/apache2.confd
index 86de660..bb7f0e0 100644
--- a/2.2/init/apache2.confd
+++ b/2.2/init/apache2.confd
@@ -43,16 +43,21 @@ APACHE2_OPTS="-D DEFAULT_VHOST -D LANGUAGE -D INFO"
# A command that outputs a formatted text version of the HTML at the URL
# of the command line. Designed for lynx, however other programs may work.
-LYNX="lynx -dump"
+#LYNX="lynx -dump"
# The URL to your server's mod_status status page.
# Required for status and fullstatus
-STATUSURL="http://localhost/server-status"
+#STATUSURL="http://localhost/server-status"
# 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"
+#KEEPENV="PATH"
+
+# Method to use when reloading the server
+# Valid options are 'restart' and 'graceful'
+# See http://httpd.apache.org/docs/2.2/stopping.html for information on
+# what they do and how they differ.
+#RELOAD_TYPE="graceful"