diff --git a/CHANGELOG b/CHANGELOG index 71af18c..761bbaa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1 +1,3 @@ +v0.1.1. Stupid bug in initial release. + v0.1. Initial release, support for many of the Apache config basics. diff --git a/lib/apache/permissions.rb b/lib/apache/permissions.rb index b183c2a..0e42214 100644 --- a/lib/apache/permissions.rb +++ b/lib/apache/permissions.rb @@ -44,7 +44,7 @@ module Apache # Block all .ht* files def no_htfiles! - files_match %{^\.ht} do + files_match %r{^\.ht} do deny_from_all satisfy :all end