aboutsummaryrefslogtreecommitdiffstats
path: root/main/apache2/apache2.confd
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-08-10 12:19:19 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-08-10 12:19:19 +0000
commitc82268523e28a998de4dce38b842b25c4ba4ffd2 (patch)
treee32c719037aa82138ceb1319a27971ed0dee2f9f /main/apache2/apache2.confd
parentc0367e7f1e95ef668455892afc61ebbbc53a35d9 (diff)
downloadaports-c82268523e28a998de4dce38b842b25c4ba4ffd2.tar.bz2
aports-c82268523e28a998de4dce38b842b25c4ba4ffd2.tar.xz
main/apache2: moved from testing
fixes #392
Diffstat (limited to 'main/apache2/apache2.confd')
-rw-r--r--main/apache2/apache2.confd54
1 files changed, 54 insertions, 0 deletions
diff --git a/main/apache2/apache2.confd b/main/apache2/apache2.confd
new file mode 100644
index 0000000000..faf02fa979
--- /dev/null
+++ b/main/apache2/apache2.confd
@@ -0,0 +1,54 @@
+# /etc/conf.d/apache2: config file for /etc/init.d/apache2
+
+#
+# The default processing model (MPM) is the process-based
+# 'prefork' model. A thread-based model, 'worker', is also
+# available, but does not work with some modules (such as PHP).
+#
+#HTTPD=/usr/sbin/httpd.worker
+
+HTTPD="/usr/sbin/httpd"
+
+#
+# To pass additional options (for instance, -D definitions) to the
+# httpd binary at startup, set HTTPD_OPTS here.
+#
+HTTPD_OPTS=
+
+# 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.
+
+# PID file
+#PIDFILE=/var/run/apache2/httpd.pid
+
+# timeout for startup/shutdown checks
+#TIMEOUT=10
+
+# ServerRoot setting
+#SERVERROOT=/var/www
+
+# 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"
+
+# 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"
+
+# The URL to your server's mod_status status page.
+# Required for status and fullstatus
+#STATUSURL="http://localhost/server-status"
+
+# 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"