From 4861bf495956b7509eac37d42497b32b2e227ba2 Mon Sep 17 00:00:00 2001 From: Pongtawat C Date: Wed, 28 Jun 2017 17:58:24 +0700 Subject: [PATCH] Bug 17610 - Allow the number of plack workers and max connections to be set in koha-conf.xml Signed-off-by: Josef Moravec --- debian/scripts/koha-plack | 7 ++++++- debian/templates/koha-conf-site.xml.in | 4 ++++ etc/koha-conf.xml | 4 ++++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/debian/scripts/koha-plack b/debian/scripts/koha-plack index 5d2799a..5e1fc9c 100755 --- a/debian/scripts/koha-plack +++ b/debian/scripts/koha-plack @@ -74,7 +74,12 @@ start_plack() _check_and_fix_perms $instancename - STARMANOPTS="-M FindBin --max-requests 50 --workers 2 \ + PLACK_MAX_REQUESTS=$(run_safe_xmlstarlet $instancename plack_max_requests) + [ -z $PLACK_MAX_REQUESTS ] && PLACK_MAX_REQUESTS="50" + PLACK_WORKERS=$(run_safe_xmlstarlet $instancename plack_workers) + [ -z $PLACK_WORKERS ] && PLACK_WORKERS="2" + + STARMANOPTS="-M FindBin --max-requests ${PLACK_MAX_REQUESTS} --workers ${PLACK_WORKERS} \ --user=${instancename}-koha --group ${instancename}-koha \ --pid ${PIDFILE} \ --daemonize \ diff --git a/debian/templates/koha-conf-site.xml.in b/debian/templates/koha-conf-site.xml.in index 7ba39f3..9b9af44 100644 --- a/debian/templates/koha-conf-site.xml.in +++ b/debian/templates/koha-conf-site.xml.in @@ -315,6 +315,10 @@ __END_SRU_PUBLICSERVER__ /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-BoldOblique.ttf + + 50 + 2 + localhost:9200 koha___KOHASITE__ diff --git a/etc/koha-conf.xml b/etc/koha-conf.xml index a30eb35..d2d9119 100644 --- a/etc/koha-conf.xml +++ b/etc/koha-conf.xml @@ -142,5 +142,9 @@ __PAZPAR2_TOGGLE_XML_POST__ __FONT_DIR__/DejaVuSans-BoldOblique.ttf + + 50 + 2 + -- 2.1.4