diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-10-06 18:28:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-06 18:28:33 +0200 |
commit | 6fe0afaa39271bbd75cf068abd67b19fd062a843 (patch) | |
tree | 78463f08c170191bae31b212a27e68cd1510a56f /Dockerfile | |
parent | 350f370d64df2effbf8ef147d5fc744a3b01601f (diff) | |
download | bugzilla-6fe0afaa39271bbd75cf068abd67b19fd062a843.tar.gz bugzilla-6fe0afaa39271bbd75cf068abd67b19fd062a843.tar.xz |
Bug 1406235 - Cleanup httpd config and expose server limits as env settings
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index ef226da56..604f12c14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,11 @@ FROM mozillabteam/bmo-slim:20170927.1 -ENV BUNDLE=https://s3.amazonaws.com/moz-devservices-bmocartons/bmo/vendor.tar.gz +ENV HTTPD_StartServers=8 +ENV HTTPD_MinSpareServers=5 +ENV HTTPD_MaxSpareServers=20 +ENV HTTPD_ServerLimit=256 +ENV HTTPD_MaxClients=256 +ENV HTTPD_MaxRequestsPerChild=4000 ENV PORT=8000 WORKDIR /app |