8a342866f9
Change-Id: Ib83a4d95df155f21c9affd25924261dc4b414133 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
17 lines
487 B
Plaintext
17 lines
487 B
Plaintext
# ************************************
|
|
# Managed by Puppet
|
|
# ************************************
|
|
|
|
NameVirtualHost <%= @vhost_name %>:<%= @port %>
|
|
<VirtualHost <%= @vhost_name %>:<%= @port %>>
|
|
ServerName <%= @srvname %>
|
|
|
|
ProxyPass / http://127.0.0.1:8080/ retry=0 nocanon
|
|
ProxyPassReverse / http://127.0.0.1:8080/
|
|
|
|
ErrorLog /var/log/apache2/<%= @name %>_error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/apache2/<%= @name %>_access.log combined
|
|
ServerSignature Off
|
|
</VirtualHost>
|