github.com/ddev/ddev@v1.23.2-0.20240519125000-d824ffe36ff3/containers/ddev-webserver/ddev-webserver-base-files/etc/apache2/mods-available/cache_disk.conf (about) 1 <IfModule mod_cache_disk.c> 2 3 # cache cleaning is done by htcacheclean, which can be configured in 4 # /etc/default/apache2 5 # 6 # For further information, see the comments in that file, 7 # /usr/share/doc/apache2/README.Debian, and the htcacheclean(8) 8 # man page. 9 10 # This path must be the same as the one in /etc/default/apache2 11 CacheRoot /var/cache/apache2/mod_cache_disk 12 13 # This will also cache local documents. It usually makes more sense to 14 # put this into the configuration for just one virtual host. 15 #CacheEnable disk / 16 17 18 # The result of CacheDirLevels * CacheDirLength must not be higher than 19 # 20. Moreover, pay attention on file system limits. Some file systems 20 # do not support more than a certain number of inodes and 21 # subdirectories (e.g. 32000 for ext3) 22 CacheDirLevels 2 23 CacheDirLength 1 24 25 </IfModule> 26 27 # vim: syntax=apache ts=4 sw=4 sts=4 sr noet