puppet-apps_site/vhost.erb
Christopher Aedo 93c85e96bf Create site for apps.openstack.org
This commit adds the puppet module to
host the content of apps.openstack.org
by cloning the repo hosting static
content.

Change-Id: If419130e5ed01742c0e3840c7fe761ca53f86560
2015-06-02 21:07:32 -07:00

25 lines
569 B
Plaintext

<VirtualHost *:80>
ServerAdmin <%= @serveradmin %>
ServerName <%= @vhost_name %>
DocumentRoot <%= @docroot %>
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory <%= @docroot %>>
Allow from all
Satisfy Any
</Directory>
ErrorLog /var/log/apache2/app_site-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/app_site-access.log combined
ServerSignature Off
</VirtualHost>