X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/6d0fd628cfdf5b2e32c656b78ece007752c522f2..211b0803abd126829c723ae9a6f091b08d103c55:/roles/git.rb diff --git a/roles/git.rb b/roles/git.rb index 09b95cbf1..889aa2c38 100644 --- a/roles/git.rb +++ b/roles/git.rb @@ -4,6 +4,10 @@ description "Role applied to all git servers" default_attributes( :accounts => { :users => { + :bretth => { + :status => :user, + :shell => "/usr/bin/git-shell" + }, :lonvia => { :status => :user, :shell => "/usr/bin/git-shell" @@ -18,10 +22,17 @@ default_attributes( } } }, + :apache => { + :mpm => "event", + :event => { + :min_spare_threads => 50, + :max_spare_threads => 150, + :listen_cores_buckets_ratio => 4 + } + }, :git => { :host => "git.openstreetmap.org", - :aliases => ["git.osm.org"], - :backup => "git" + :aliases => ["git.osm.org"] } )