
puppet-httpd is the openstack-infra version of puppetlabs-apache (0.0.4) release. This patchset will remove the puppetlabs-apache namespace from -infra allowing for possible future patchsets to use newer puppetlabs-apache modules. Change-Id: Iedd42f9fb628f1fbf6c4916a5811fd02860f389f Signed-off-by: Paul Belanger <pabelanger@redhat.com>
23 lines
699 B
Plaintext
23 lines
699 B
Plaintext
<VirtualHost *:80>
|
|
ServerName <%= scope.lookupvar("nodepool::vhost_name") %>
|
|
|
|
DocumentRoot <%= scope.lookupvar("nodepool::image_log_document_root") %>
|
|
<Directory <%= scope.lookupvar("nodepool::image_log_document_root") %>>
|
|
Options <%= scope.lookupvar("httpd::params::options") %>
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog /var/log/<%= scope.lookupvar("httpd::params::apache_name") %>/nodepool_error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/<%= scope.lookupvar("httpd::params::apache_name") %>/nodepool_access.log combined
|
|
ServerSignature Off
|
|
|
|
AddType text/plain .log
|
|
|
|
<IfModule mod_deflate.c>
|
|
SetOutputFilter DEFLATE
|
|
</IfModule>
|
|
|
|
</VirtualHost>
|