forked from pool/apache2
- server-tunning.conf: MaxClients was renamed to MaxRequestWorkers
[bsc#1037731] - gensslcert: use hostname when fqdn is too long [bsc#1035829] OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=510
This commit is contained in:
@@ -18,12 +18,12 @@
|
|||||||
# maximum number of server processes which are kept spare
|
# maximum number of server processes which are kept spare
|
||||||
# http://httpd.apache.org/docs/2.4/mod/prefork.html#maxspareservers
|
# http://httpd.apache.org/docs/2.4/mod/prefork.html#maxspareservers
|
||||||
MaxSpareServers 10
|
MaxSpareServers 10
|
||||||
# highest possible MaxClients setting for the lifetime of the Apache process.
|
# highest possible MaxRequestWorkers setting for the lifetime of the Apache process.
|
||||||
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#serverlimit
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#serverlimit
|
||||||
ServerLimit 150
|
ServerLimit 150
|
||||||
# maximum number of server processes allowed to start
|
# maximum number of server processes allowed to start (formerly MaxClients)
|
||||||
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxclients
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers
|
||||||
MaxClients 150
|
MaxRequestWorkers 150
|
||||||
# maximum number of requests a server process serves
|
# maximum number of requests a server process serves
|
||||||
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestsperchild
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestsperchild
|
||||||
MaxRequestsPerChild 10000
|
MaxRequestsPerChild 10000
|
||||||
@@ -43,9 +43,9 @@
|
|||||||
# upper limit on the configurable number of threads per child process
|
# upper limit on the configurable number of threads per child process
|
||||||
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadlimit
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadlimit
|
||||||
ThreadLimit 64
|
ThreadLimit 64
|
||||||
# maximum number of simultaneous client connections
|
# maximum number of simultaneous client connections (formerly MaxClients)
|
||||||
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxclients
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestworkers
|
||||||
MaxClients 150
|
MaxRequestWorkers 150
|
||||||
# number of worker threads created by each child process
|
# number of worker threads created by each child process
|
||||||
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadsperchild
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadsperchild
|
||||||
ThreadsPerChild 25
|
ThreadsPerChild 25
|
||||||
@@ -62,8 +62,8 @@
|
|||||||
MinSpareThreads 25
|
MinSpareThreads 25
|
||||||
# maximum number of worker threads which are kept spare
|
# maximum number of worker threads which are kept spare
|
||||||
MaxSpareThreads 75
|
MaxSpareThreads 75
|
||||||
# maximum number of simultaneous client connections
|
# maximum number of simultaneous client connections (formerly MaxClients)
|
||||||
MaxClients 150
|
MaxRequestWorkers 150
|
||||||
# constant number of worker threads in each server process
|
# constant number of worker threads in each server process
|
||||||
ThreadsPerChild 25
|
ThreadsPerChild 25
|
||||||
# maximum number of requests a server process serves
|
# maximum number of requests a server process serves
|
||||||
|
@@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 2 07:36:43 UTC 2017 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- server-tunning.conf: MaxClients was renamed to MaxRequestWorkers
|
||||||
|
[bsc#1037731]
|
||||||
|
- gensslcert: use hostname when fqdn is too long [bsc#1035829]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 19 09:01:33 UTC 2017 - pgajdos@suse.com
|
Fri May 19 09:01:33 UTC 2017 - pgajdos@suse.com
|
||||||
|
|
||||||
|
@@ -42,6 +42,11 @@ r=$ROOT
|
|||||||
. $r/etc/sysconfig/network/config
|
. $r/etc/sysconfig/network/config
|
||||||
FQHOSTNAME=`hostname -f`
|
FQHOSTNAME=`hostname -f`
|
||||||
|
|
||||||
|
fqlength=`echo $FQHOSTNAME|wc -c`
|
||||||
|
if [ $fqlength -gt 63 ]; then
|
||||||
|
FQHOSTNAME=`hostname`
|
||||||
|
fi
|
||||||
|
|
||||||
# defaults
|
# defaults
|
||||||
comment="mod_ssl server certificate"
|
comment="mod_ssl server certificate"
|
||||||
name=
|
name=
|
||||||
|
Reference in New Issue
Block a user