Moved moin htdocs apache configs to separate file

This commit is contained in:
Ossi Salmi 2012-07-17 17:14:48 +03:00
parent d88d0a9f93
commit 7f50003a89
3 changed files with 8 additions and 3 deletions

View file

@ -2,6 +2,3 @@
Options +ExecCGI Options +ExecCGI
AllowOverride All AllowOverride All
</Directory> </Directory>
<Directory "/srv/www/https/*/moin_static">
AllowOverride FileInfo
</Directory>

View file

@ -0,0 +1,3 @@
<Directory "/srv/www/https/*/moin_static">
AllowOverride FileInfo
</Directory>

View file

@ -368,6 +368,11 @@ class wiki::collab::base {
} }
if $collab_webhosts { if $collab_webhosts {
apache::configfile { "moin.conf":
http => false,
source => "puppet:///modules/wiki/moin-httpd.conf",
}
configwebhost { $collab_webhosts: } configwebhost { $collab_webhosts: }
} }