983761213f
This is a follow on to I67870f6d439af2d2a63a5048ef52cecff3e75275 to do the same for files.openstack.org (as http://files.openstack.org/mirror/logs/ is a handy central place to point people at) Change-Id: I07c707d45ab3e3c6f87460b3346efd7026467c56
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
# ************************************
|
|
# Managed by Puppet
|
|
# ************************************
|
|
|
|
NameVirtualHost <%= @vhost_name %>:<%= @port %>
|
|
<VirtualHost <%= @vhost_name %>:<%= @port %>>
|
|
ServerName <%= @srvname %>
|
|
<% if @serveraliases.is_a? Array -%>
|
|
<% @serveraliases.each do |name| -%><%= " ServerAlias #{name}\n" %><% end -%>
|
|
<% elsif @serveraliases != nil -%>
|
|
<%= " ServerAlias #{@serveraliases}" -%>
|
|
<% end -%>
|
|
|
|
DocumentRoot <%= @docroot %>
|
|
<Directory <%= @docroot %>>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
Satisfy any
|
|
Require all granted
|
|
</Directory>
|
|
|
|
Alias /robots.txt /var/www/robots.txt
|
|
<Directory "/var/www/robots.txt">
|
|
Require all granted
|
|
</Directory>
|
|
|
|
Alias /docs-404s /var/www/docs-404s
|
|
<Directory "/var/www/docs-404s">
|
|
Options +Indexes
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog /var/log/<%= scope.lookupvar("httpd::params::apache_name") %>/<%= @name %>_error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/<%= scope.lookupvar("httpd::params::apache_name") %>/<%= @name %>_access.log combined
|
|
ServerSignature Off
|
|
|
|
AddType text/plain .log .log.1
|
|
</VirtualHost>
|