cfd2031844
Change-Id: Ie1564aa338bf5f9c2d155da68cdb6cb8a43a9b55
14 lines
430 B
Plaintext
14 lines
430 B
Plaintext
<VirtualHost <%= @vhost_name %>:80>
|
|
ServerName <%= @vhost_name %>
|
|
ServerAdmin <%= @serveradmin %>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/<%= @vhost_name %>-error.log
|
|
|
|
LogLevel warn
|
|
|
|
CustomLog ${APACHE_LOG_DIR}/<%= @vhost_name %>-access.log combined
|
|
|
|
ProxyPass / http://127.0.0.1:9292/ retry=0
|
|
ProxyPassReverse / http://127.0.0.1:9292/
|
|
</VirtualHost>
|