summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-03-25 17:05:40 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-03-25 17:05:40 -0300
commitd36e328d3b80fb5c4615fb740e8b7a3cecf09dba (patch)
treea36d1e90f38f6b56d336a5cae59bc5d6a5c05c7d /templates
parent10a787b642395778fa75d73ca44bdf98ffec5b01 (diff)
downloadpuppet-apache-d36e328d3b80fb5c4615fb740e8b7a3cecf09dba.tar.gz
puppet-apache-d36e328d3b80fb5c4615fb740e8b7a3cecf09dba.tar.bz2
Adds allow_override param into apache::site
Diffstat (limited to 'templates')
-rw-r--r--templates/site.erb10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/site.erb b/templates/site.erb
index e2ebbf5..2ed5107 100644
--- a/templates/site.erb
+++ b/templates/site.erb
@@ -33,6 +33,11 @@
<% if @custom_directives != false -%>
<%= @custom_directives %>
<% end -%>
+<% if @allow_override != false %>
+ <Directory <%= @docroot %>>
+ AllowOverride <%= @allow_override %>
+ </Directory>
+<% end -%>
</VirtualHost>
# end vhost for <%= @title %>
<% if @ssl == true %>
@@ -55,6 +60,11 @@
<% if @custom_directives != false -%>
<%= @custom_directives %>
<% end -%>
+<% if @allow_override != false %>
+ <Directory <%= @docroot %>>
+ AllowOverride <%= @allow_override %>
+ </Directory>
+<% end -%>
<% if @mpm == true %>
<IfModule mpm_itk_module>
AssignUserId <%= @user %> <%= @gid %>