summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-03-18 11:04:16 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-03-18 11:04:16 +0000
commitbc5682c5afca9b8d9924ad1533edfe001ba105c2 (patch)
tree4726ccf217aafde5a149053ca8694ab58bb82164
parente702cacc5aaba2ab4e3a72b163a1c236df5b484a (diff)
downloadtrove-setup-bc5682c5afca9b8d9924ad1533edfe001ba105c2.tar.gz
Raise the limits of morph-cache-server process instances
This will allow more clients to get data from the cache, and more distbuild workers to push new artifacts.
-rw-r--r--etc/lighttpd/morph-cache-httpd.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/lighttpd/morph-cache-httpd.conf b/etc/lighttpd/morph-cache-httpd.conf
index 65b9b22..08d25a9 100644
--- a/etc/lighttpd/morph-cache-httpd.conf
+++ b/etc/lighttpd/morph-cache-httpd.conf
@@ -26,7 +26,7 @@ $SERVER["socket"] == ":8080" {
"socket" => "/var/run/lighttpd/morph-cache-server.socket",
"bin-path" => "/usr/bin/morph-cache-server --config=/etc/morph-cache-server.conf",
"check-local" => "disable",
- "max-procs" => 4,
+ "max-procs" => 32,
)
)
)
@@ -42,7 +42,7 @@ $SERVER["socket"] == ":8081" {
"socket" => "/var/run/lighttpd/morph-cache-server-write.socket",
"bin-path" => "/usr/bin/morph-cache-server --config=/etc/morph-cache-server-write.conf",
"check-local" => "disable",
- "max-procs" => 1,
+ "max-procs" => 32,
)
)
)