From b2209850b0659eb299632c54ece079477fc50246 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Fri, 5 Nov 2010 23:29:16 +0000 Subject: - add a define to ease catalyst application deployement --- modules/apache/manifests/init.pp | 15 +++++++++++++++ modules/apache/templates/vhost_catalyst_app.conf | 13 +++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 modules/apache/templates/vhost_catalyst_app.conf (limited to 'modules/apache') diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index 63b1878d..2bbf03f4 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -53,4 +53,19 @@ class apache { ensure => installed } } + + define vhost_catalyst_app($script, $process = 4, $force_ssl = false) { + + include apache::mod_fastcgi + + 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_catalyst_app.conf") + } + } } diff --git a/modules/apache/templates/vhost_catalyst_app.conf b/modules/apache/templates/vhost_catalyst_app.conf new file mode 100644 index 00000000..29ca7c74 --- /dev/null +++ b/modules/apache/templates/vhost_catalyst_app.conf @@ -0,0 +1,13 @@ + + ServerName <%= vhost %> + # Serve static content directly + DocumentRoot /dev/null + + Alias <%= script %>/ / + FastCgiServer <%= script %> -processes <%= process %> -idle-timeout 30 + + + Allow from all + + + -- cgit v1.2.1