]> git.openstreetmap.org Git - chef.git/blob - cookbooks/postgresql/templates/default/pg_hba.conf.erb
postgresql: checkpoint-segments has been removed in 9.5
[chef.git] / cookbooks / postgresql / templates / default / pg_hba.conf.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 # TYPE  DATABASE        USER            ADDRESS                 METHOD
4 <% @early_rules.each do |rule| -%>
5 <%= rule[:type] || "host" %>    <%= rule[:database] || "all" %>         <%= rule[:user] || "all" %>             <%= rule[:address] %>           <%= rule[:method] || "md5" %> <%= (rule[:options] || {}).collect { |k,v| "#{k}=#{v}" }.join(" ") %>
6 <% end -%>
7 local   all             all                                     peer
8 host    all             all             127.0.0.1/32            md5
9 host    all             all             ::1/128                 md5
10 <% @late_rules.each do |rule| -%>
11 <%= rule[:type] || "host" %>    <%= rule[:database] || "all" %>         <%= rule[:user] || "all" %>             <%= rule[:address] %>           <%= rule[:method] || "md5" %> <%= (rule[:options] || {}).collect { |k,v| "#{k}=#{v}" }.join(" ") %>
12 <% end -%>