apache-config-generator/lib/apache/permissions.rb
2010-04-28 16:19:03 -04:00

14 lines
202 B
Ruby

module Apache
module Permissions
def deny_from_all
order :deny, :allow
deny :from_all
end
def allow_from_all
order :allow, :deny
allow :from_all
end
end
end