This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:443> | |
ServerAdmin <ADMIN EMAIL HERE> | |
ServerName <SITE DNS NAME HERE> | |
<IfModule mod_disk_cache.c> | |
# "/s" is where Confluence serves "static" stuff. Instruct Apache to cache it: | |
CacheEnable disk /s | |
CacheIgnoreHeaders Set-Cookie | |
CacheRoot "/var/cache/apache2/mod_cache_disk" | |
CacheDirLevels 5 |