]> gitweb.michael.orlitzky.com - mjo-overlay.git/blob - app-backup/backuppc/files/apache2-backuppc.conf
1c27c69be46e3184958a66a4c81deb804e8d30ba
[mjo-overlay.git] / app-backup / backuppc / files / apache2-backuppc.conf
1 # /etc/conf.d/apache2: config file for /etc/init.d/apache2
2
3 # When you install a module it is easy to activate or deactivate the modules
4 # and other features of apache using the APACHE2_OPTS line. Every module should
5 # install a configuration in /etc/apache2/modules.d. In that file will have an
6 # <IfDefine NNN> directive where NNN is the option to enable that module.
7 #
8 # Here are the options available in the default configuration:
9 #
10 # AUTH_DIGEST Enables mod_auth_digest
11 # AUTHNZ_LDAP Enables authentication through mod_ldap (available if USE=ldap)
12 # CACHE Enables mod_cache
13 # DAV Enables mod_dav
14 # ERRORDOCS Enables default error documents for many languages.
15 # INFO Enables mod_info, a useful module for debugging
16 # LANGUAGE Enables content-negotiation based on language and charset.
17 # LDAP Enables mod_ldap (available if USE=ldap)
18 # MANUAL Enables /manual/ to be the apache manual (available if USE=docs)
19 # MEM_CACHE Enables default configuration mod_mem_cache
20 # PROXY Enables mod_proxy
21 # SSL Enables SSL (available if USE=ssl)
22 # SUEXEC Enables running CGI scripts (in USERDIR) through suexec.
23 # USERDIR Enables /~username mapping to /home/username/public_html
24 #
25 #
26 # The following two options provide the default virtual host for the HTTP and
27 # HTTPS protocol. YOU NEED TO ENABLE AT LEAST ONE OF THEM, otherwise apache
28 # will not listen for incomming connections on the approriate port.
29 #
30 # DEFAULT_VHOST Enables name-based virtual hosts, with the default
31 # virtual host being in /var/www/localhost/htdocs
32 # SSL_DEFAULT_VHOST Enables default vhost for SSL (you should enable this
33 # when you enable SSL)
34 #
35 APACHE2_OPTS="-D LANGUAGE -D PERL -D BACKUPPC_VHOST"
36
37 # Extended options for advanced uses of Apache ONLY
38 # You don't need to edit these unless you are doing crazy Apache stuff
39 # As not having them set correctly, or feeding in an incorrect configuration
40 # via them will result in Apache failing to start
41 # YOU HAVE BEEN WARNED.
42
43 # PID file
44 PIDFILE=/var/run/apache-backuppc.pid
45
46 # timeout for startup/shutdown checks
47 #TIMEOUT=10
48
49 # ServerRoot setting
50 SERVERROOT=/usr/lib/apache2
51
52 # Configuration file location
53 # - If this does NOT start with a '/', then it is treated relative to
54 # $SERVERROOT by Apache
55 CONFIGFILE=/etc/BackupPC/httpd.conf
56
57 # Location to log startup errors to
58 # They are normally dumped to your terminal.
59 #STARTUPERRORLOG="/var/log/apache2/startuperror.log"
60
61 # A command that outputs a formatted text version of the HTML at the URL
62 # of the command line. Designed for lynx, however other programs may work.
63 #LYNX="lynx -dump"
64
65 # The URL to your server's mod_status status page.
66 # Required for status and fullstatus
67 #STATUSURL="http://localhost/server-status"
68
69 # Method to use when reloading the server
70 # Valid options are 'restart' and 'graceful'
71 # See http://httpd.apache.org/docs/2.2/stopping.html for information on
72 # what they do and how they differ.
73 #RELOAD_TYPE="graceful"