Merge "Add trystack.o.o into -infra"

This commit is contained in:
Jenkins 2015-08-04 11:38:52 +00:00 committed by Gerrit Code Review
commit 6dfab80fac
2 changed files with 39 additions and 0 deletions

View File

@ -228,4 +228,22 @@ class openstack_project::static (
serveraliases => ['*.devstack.org'],
template => 'openstack_project/devstack.vhost.erb',
}
###########################################################
# Trystack
apache::vhost { 'trystack.openstack.org':
port => 80,
priority => '50',
docroot => '/opt/trystack',
template => 'openstack_project/trystack.vhost.erb',
require => Vcsrepo['/opt/trystack'],
}
vcsrepo { '/opt/trystack':
ensure => latest,
provider => git,
revision => 'master',
source => 'https://git.openstack.org/openstack-infra/trystack-site',
}
}

View File

@ -0,0 +1,21 @@
# ************************************
# Managed by Puppet
# ************************************
NameVirtualHost <%= @vhost_name %>:<%= @port %>
<VirtualHost <%= @vhost_name %>:<%= @port %>>
ServerName <%= @srvname %>
DocumentRoot <%= @docroot %>
<Directory <%= @docroot %>>
Options <%= @options %>
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/<%= @name %>_error.log
LogLevel warn
CustomLog /var/log/apache2/<%= @name %>_access.log combined
ServerSignature Off
</VirtualHost>