Knife-Zero doesn't include Berkshelf support, so vendoring everything in the repo is convenient again
18 lines
445 B
Plaintext
18 lines
445 B
Plaintext
<% if node['apache']['version'] == '2.4' -%>
|
|
<IfModule mod_userdir.c>
|
|
UserDir public_html
|
|
UserDir disabled root
|
|
|
|
<Directory /home/*/public_html>
|
|
AllowOverride FileInfo AuthConfig Limit Indexes
|
|
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
|
|
<Limit GET POST OPTIONS>
|
|
Require all granted
|
|
</Limit>
|
|
<LimitExcept GET POST OPTIONS>
|
|
Require all denied
|
|
</LimitExcept>
|
|
</Directory>
|
|
</IfModule>
|
|
<% end -%>
|