From 182cac02836d68fe1df527c7c80aa06c2e91be0f Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Mon, 17 Jan 2011 15:24:07 +0000 Subject: new vhost_wsgi type, for viewvc support --- modules/apache/manifests/init.pp | 13 +++++++++++++ modules/apache/templates/vhost_wsgi.conf | 11 +++++++++++ 2 files changed, 24 insertions(+) create mode 100644 modules/apache/templates/vhost_wsgi.conf (limited to 'modules/apache') diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index 03eee275..e21febcf 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -157,6 +157,19 @@ class apache { } } + define vhost_wsgi($wsgi_path) { + include apache::mod_wsgi + file { "$name.conf": + path => "/etc/httpd/conf/vhosts.d/$name.conf", + ensure => "present", + owner => root, + group => root, + mode => 644, + notify => Service['apache'], + content => template("apache/vhost_wsgi.conf") + } + } + define vhost_other_app($vhost_file) { include apache::base file { "$name.conf": diff --git a/modules/apache/templates/vhost_wsgi.conf b/modules/apache/templates/vhost_wsgi.conf new file mode 100644 index 00000000..5c30d337 --- /dev/null +++ b/modules/apache/templates/vhost_wsgi.conf @@ -0,0 +1,11 @@ + + ServerName <%= name %> + # Serve static content directly + DocumentRoot /dev/null + + WSGIScriptAlias / <%= wsgi_path %> + + Allow from all + + + -- cgit v1.2.1