]> git.openstreetmap.org Git - chef.git/blobdiff - roles/git.rb
git: test using apache mpm event
[chef.git] / roles / git.rb
index 09b95cbf11273d5ef9d4b2e39ec965b8d783d934..889aa2c38e994501f3be33e900d03ef552935fb7 100644 (file)
@@ -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"]
   }
 )