~clint-fewbar/ubuntu/maverick/apache2/maverick-passphrase-plymouth-change

« back to all changes in this revision

Viewing changes to debian/README.Debian

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2007-07-03 21:23:40 UTC
  • mfrom: (0.9.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070703212340-ezgz2fwx00jiiiox
Tags: 2.2.4-2
* Modularize config: Move module specific configuration from apache2.conf
  to mods-available/*conf (Closes: #338472)
* Remove the NO_START kludge. Now you have to use rc*.d symlinks to disable
  apache2. (Closes: #408462, #275561)
* Create run and lock directores in apache2ctl to make it work on fresh
  installations before the first call of the init script. Together with
  the previous item, this closes: #418499
* Disable AddDefaultCharset again (Closes: #397886)
* Make ports.conf, conf.d/charset, and /etc/default/apache2 conffiles
  managed by dpkg
* Listen on port 443 by default if mod_ssl is loaded (Closes: #404598)
* Add logic to start htcacheclean as daemon or cronjob. The configuration
  is in /etc/default/apache2
* Fix security issues:
  - CVE-2007-3304: prevent parent process to send SIGUSR1 to arbitrary
    processes
  - CVE-2006-5752: XSS in mod_status
* Add init.d dependency info from insserv overrides to /etc/init.d/apache2
* Replace apachectl with apache2ctl in docs (Closes: #164493)
* Add usage message to apache2ctl (Closes: #359008)
* Make -dev packages priority extra
* Add secure example cipher/protocol configuration to ssl.conf
* Update watch file (Closes: #433552)
* Bump dh_compat to 5
* Add new package apache2-dbg with debugging symbols
* Fix mod_cache returning 304 instead of 200 on HEAD requests

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
Using mod_disk_cache
108
108
====================
109
109
 
110
 
You need to enable caching in /etc/apache2/mods-enabled/disk_cache.conf . To
111
 
prevent the disk cache to grow indefinitely, you have to use htcacheclean from
112
 
the apache2-utils package. There is currently no mechanism in the Debian
113
 
package to start htcacheclean automatically. See the htcacheclean man page for
114
 
details.
 
110
To ensure that the disk cache does not grow indefinitely, htcacheclean is
 
111
started when mod_disk_cache is enabled. Both daemon and cron (daily) mode
 
112
are supported. The configuration (run mode, cache size, ...) in
 
113
/etc/default/apache2 .
 
114
 
 
115
Normally, htcacheclean is automatically started and stopped by
 
116
/etc/init.d/apache2. However, if you change the state of mod_disk_cache or the
 
117
configuration of htcacheclean while apache2 is running, you may need to
 
118
manually start/stop htcacheclean with "/etc/init.d/apache2 start-htcacheclean"
 
119
or "/etc/init.d/apache2 stop-htcacheclean".
 
120
 
115
121
 
116
122
Documentation
117
123
=============