Accepting request 252298 from home:pgajdos
- ServerSignature=Off and ServerTokens=Prod by request from security team [bnc#716495] - fix documentation links 2.2 -> 2.4 [bnc#888163] (internal) OBS-URL: https://build.opensuse.org/request/show/252298 OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=405
This commit is contained in:
parent
b0906927d0
commit
e897f2962b
@ -7,7 +7,7 @@
|
|||||||
#
|
#
|
||||||
# mod_reqtimeout.c must be loaded.
|
# mod_reqtimeout.c must be loaded.
|
||||||
#
|
#
|
||||||
# see https://httpd.apache.org/docs/2.2/mod/mod_reqtimeout.html
|
# see https://httpd.apache.org/docs/2.4/mod/mod_reqtimeout.html
|
||||||
# or /usr/share/apache2/manual/mod/mod_reqtimeout.html.en
|
# or /usr/share/apache2/manual/mod/mod_reqtimeout.html.en
|
||||||
#
|
#
|
||||||
# Note:
|
# Note:
|
||||||
|
@ -10,47 +10,47 @@
|
|||||||
# prefork MPM
|
# prefork MPM
|
||||||
<IfModule prefork.c>
|
<IfModule prefork.c>
|
||||||
# number of server processes to start
|
# number of server processes to start
|
||||||
# http://httpd.apache.org/docs/2.2/mod/mpm_common.html#startservers
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#startservers
|
||||||
StartServers 5
|
StartServers 5
|
||||||
# minimum number of server processes which are kept spare
|
# minimum number of server processes which are kept spare
|
||||||
# http://httpd.apache.org/docs/2.2/mod/prefork.html#minspareservers
|
# http://httpd.apache.org/docs/2.4/mod/prefork.html#minspareservers
|
||||||
MinSpareServers 5
|
MinSpareServers 5
|
||||||
# maximum number of server processes which are kept spare
|
# maximum number of server processes which are kept spare
|
||||||
# http://httpd.apache.org/docs/2.2/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 MaxClients setting for the lifetime of the Apache process.
|
||||||
# http://httpd.apache.org/docs/2.2/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
|
||||||
# http://httpd.apache.org/docs/2.2/mod/mpm_common.html#maxclients
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxclients
|
||||||
MaxClients 150
|
MaxClients 150
|
||||||
# maximum number of requests a server process serves
|
# maximum number of requests a server process serves
|
||||||
# http://httpd.apache.org/docs/2.2/mod/mpm_common.html#maxrequestsperchild
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestsperchild
|
||||||
MaxRequestsPerChild 10000
|
MaxRequestsPerChild 10000
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
# worker MPM
|
# worker MPM
|
||||||
<IfModule worker.c>
|
<IfModule worker.c>
|
||||||
# initial number of server processes to start
|
# initial number of server processes to start
|
||||||
# http://httpd.apache.org/docs/2.2/mod/mpm_common.html#startservers
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#startservers
|
||||||
StartServers 3
|
StartServers 3
|
||||||
# minimum number of worker threads which are kept spare
|
# minimum number of worker threads which are kept spare
|
||||||
# http://httpd.apache.org/docs/2.2/mod/mpm_common.html#minsparethreads
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#minsparethreads
|
||||||
MinSpareThreads 25
|
MinSpareThreads 25
|
||||||
# maximum number of worker threads which are kept spare
|
# maximum number of worker threads which are kept spare
|
||||||
# http://httpd.apache.org/docs/2.2/mod/mpm_common.html#maxsparethreads
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxsparethreads
|
||||||
MaxSpareThreads 75
|
MaxSpareThreads 75
|
||||||
# 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.2/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
|
||||||
# http://httpd.apache.org/docs/2.2/mod/mpm_common.html#maxclients
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxclients
|
||||||
MaxClients 150
|
MaxClients 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.2/mod/mpm_common.html#threadsperchild
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#threadsperchild
|
||||||
ThreadsPerChild 25
|
ThreadsPerChild 25
|
||||||
# maximum number of requests a server process serves
|
# maximum number of requests a server process serves
|
||||||
# http://httpd.apache.org/docs/2.2/mod/mpm_common.html#maxrequestsperchild
|
# http://httpd.apache.org/docs/2.4/mod/mpm_common.html#maxrequestsperchild
|
||||||
MaxRequestsPerChild 10000
|
MaxRequestsPerChild 10000
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
# This is the Apache server configuration file providing SSL support.
|
# This is the Apache server configuration file providing SSL support.
|
||||||
# It contains the configuration directives to instruct the server how to
|
# It contains the configuration directives to instruct the server how to
|
||||||
# serve pages over an https connection. For detailing information about these
|
# serve pages over an https connection. For detailing information about these
|
||||||
# directives see http://httpd.apache.org/docs/2.2/mod/mod_ssl.html
|
# directives see http://httpd.apache.org/docs/2.4/mod/mod_ssl.html
|
||||||
#
|
#
|
||||||
# Do NOT simply read the instructions in here without understanding
|
# Do NOT simply read the instructions in here without understanding
|
||||||
# what they do. They're here only as hints or reminders. If you are unsure
|
# what they do. They're here only as hints or reminders. If you are unsure
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 25 14:39:05 UTC 2014 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- ServerSignature=Off and ServerTokens=Prod by request from
|
||||||
|
security team [bnc#716495]
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 24 13:11:16 UTC 2014 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- fix documentation links 2.2 -> 2.4 [bnc#888163] (internal)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 21 16:23:51 UTC 2014 - crrodriguez@opensuse.org
|
Mon Jul 21 16:23:51 UTC 2014 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
@ -191,7 +191,7 @@ APACHE_START_TIMEOUT="2"
|
|||||||
# Configures the footer on server-generated documents
|
# Configures the footer on server-generated documents
|
||||||
# This correlates to the ServerSignature directive.
|
# This correlates to the ServerSignature directive.
|
||||||
#
|
#
|
||||||
APACHE_SERVERSIGNATURE="on"
|
APACHE_SERVERSIGNATURE="off"
|
||||||
|
|
||||||
## Type: list(debug,info,notice,warn,error,crit,alert,emerg)
|
## Type: list(debug,info,notice,warn,error,crit,alert,emerg)
|
||||||
## Default: "warn"
|
## Default: "warn"
|
||||||
@ -251,7 +251,7 @@ APACHE_USE_CANONICAL_NAME="off"
|
|||||||
# (installed modules, versions, etc.)
|
# (installed modules, versions, etc.)
|
||||||
# see http://httpd.apache.org/docs-2.2/mod/core.html#servertokens
|
# see http://httpd.apache.org/docs-2.2/mod/core.html#servertokens
|
||||||
#
|
#
|
||||||
APACHE_SERVERTOKENS="OS"
|
APACHE_SERVERTOKENS="ProductOnly"
|
||||||
|
|
||||||
## Type: list(on,off)
|
## Type: list(on,off)
|
||||||
## Default: "off"
|
## Default: "off"
|
||||||
|
Loading…
Reference in New Issue
Block a user