10 lines
321 B
Text
10 lines
321 B
Text
<VirtualHost *:80>
|
|
ServerName <%= @site_fqdn %>
|
|
<% if @aliases != "" -%>
|
|
ServerAlias <%= @aliases %>
|
|
<% end -%>
|
|
ErrorLog /srv/www/log/http/<%= @site_fqdn %>/error_log
|
|
CustomLog /srv/www/log/http/<%= @site_fqdn %>/access_log combined
|
|
ProxyPass / <%= @proxy %>/
|
|
ProxyPassReverse / <%= @proxy %>/
|
|
</VirtualHost>
|