File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 66# Default depends on the Apache version and operating system:
77# - Debian: /var/cache/apache2/mod_cache_disk
88# - FreeBSD: /var/cache/mod_cache_disk
9- # - Red Hat, Apache 2.4: /var/cache/httpd/proxy
10- # - Red Hat, Apache 2.2: /var/cache/mod_proxy
119#
1210# @param cache_ignore_headers
1311# Specifies HTTP header(s) that should not be stored in the cache.
1614# Apache 2.2, mod_disk_cache installed. On Apache 2.4, mod_cache_disk installed.
1715# This class is deprecated, use mode_cache_disk instead
1816#
19- # @see https://httpd.apache.org/docs/2.2/mod/mod_disk_cache.html for additional documentation on version 2.2.
20- #
2117# @see https://httpd.apache.org/docs/2.4/mod/mod_cache_disk.html for additional documentation on version 2.4.
2218#
2319class apache::mod::disk_cache (
24- $cache_root = undef ,
25- $cache_ignore_headers = undef ,
20+ Optional[Stdlib::Absolutepath] $cache_root = undef ,
21+ Optional[String] $cache_ignore_headers = undef ,
22+ Boolean $default_cache_enable = true ,
2623) {
2724 deprecation(' apache::mod::disk_cache' ,' This module is deprecated; please use apache::mod::cache_disk' )
2825
You can’t perform that action at this time.
0 commit comments