summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-12-10 19:38:47 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-12-10 19:38:47 +0100
commitc2136e80cc6c1646dfe1de274e9e2b3a20f8dd25 (patch)
tree878c64a2125447bc87d1e135ccff974608714abf
parent9e92134e0441444f46f11c244d80081809f41fcb (diff)
accept 40 connections per worker before restarting it
-rw-r--r--index.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.pl b/index.pl
index f270a23..39692ae 100644
--- a/index.pl
+++ b/index.pl
@@ -1040,7 +1040,7 @@ get '/*station' => \&handle_request;
app->config(
hypnotoad => {
- accepts => 10,
+ accepts => 40,
listen => [ $ENV{DBFAKEDISPLAY_LISTEN} // 'http://*:8092' ],
pid_file => '/tmp/db-fakedisplay.pid',
workers => $ENV{DBFAKEDISPLAY_WORKERS} // 2,