Details
-
Bug
-
Status: Open
-
Normal
-
Resolution: Unresolved
-
None
-
None
-
None
-
Needs Assessment
-
Needs Assessment
Description
Basic Info
Module Version: 5.8.0
Puppet Version: 5.5.2
OS Name/Version: CentOS 7
use_optional_includes does not work. When apply in vhost can not write on .conf file, but additional_includes works fine.
apache::vhost { 'example.com': |
ensure => 'present', |
servername => 'example.com', |
port => '443', |
ssl => true, |
docroot => '/var/www/html/', # Realy is required? |
proxy_preserve_host => true, |
proxy_pass => {
|
path => '/', |
url => 'http://other.com:80/' |
},
|
|
# Custom ModSecurity rules only for this vhost |
use_optional_includes => '/etc/httpd/modsecurity.d/example.com/*.conf', |
|
}
|