
This commit adds the puppet module to host the content of apps.openstack.org by cloning the repo hosting static content. Change-Id: If419130e5ed01742c0e3840c7fe761ca53f86560
25 lines
569 B
Plaintext
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>
|