diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-22 01:14:40 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-22 01:14:40 +0000 |
commit | 1bbaabce5f4dfaed9cfc1d32d3f3d1af5095c034 (patch) | |
tree | bf59df56a6027b005381672c817bb5cbd1de70ca /modules/phpbb | |
parent | b8d98d4ad6cc3f9711164c9982cf2b38133b9a38 (diff) | |
download | puppet-1bbaabce5f4dfaed9cfc1d32d3f3d1af5095c034.tar puppet-1bbaabce5f4dfaed9cfc1d32d3f3d1af5095c034.tar.gz puppet-1bbaabce5f4dfaed9cfc1d32d3f3d1af5095c034.tar.bz2 puppet-1bbaabce5f4dfaed9cfc1d32d3f3d1af5095c034.tar.xz puppet-1bbaabce5f4dfaed9cfc1d32d3f3d1af5095c034.zip |
- offer a ssl version of the forum, for login
Diffstat (limited to 'modules/phpbb')
-rw-r--r-- | modules/phpbb/manifests/init.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/phpbb/manifests/init.pp b/modules/phpbb/manifests/init.pp index 364b587d..bb5aeea9 100644 --- a/modules/phpbb/manifests/init.pp +++ b/modules/phpbb/manifests/init.pp @@ -39,6 +39,12 @@ class phpbb { content => template("phpbb/forums_vhost.conf"), } + apache::vhost_base { "ssl_forums.$domain": + use_ssl => true, + vhost => "forums.$domain", + content => template("phpbb/forums_vhost.conf"), + } + } define phpbb_config($value) { |