NameVirtualHost <%= @vhost_name %>:<%= @port %> :<%= @port %>> <% if @ssl == true %> SSLEngine on SSLCertificateFile <%= @ssl_path %>/certs/pl.cert SSLCertificateKeyFile <%= @ssl_path %>/private/pl.key <% end %> ServerName <%= @srvname %> <% if @serveraliases.is_a? Array %> <% @serveraliases.each do |name| %><%= " ServerAlias #{name}\n" %><% end %> <% elsif @serveraliases != nil %> <%= " ServerAlias #{@serveraliases}" %> <% end %> ProxyRequests Off Order deny,allow Allow from all ProxyPass / <%= @dest %>/ ProxyPassReverse / <%= @dest %>/ ProxyPreserveHost On 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