public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/apache:master commit in: 2.4/conf/modules.d/
@ 2014-05-07  9:19 Lars Wendler
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Wendler @ 2014-05-07  9:19 UTC (permalink / raw
  To: gentoo-commits

commit:     fbdf004b77ec97b4df28e42d8038c07b87bd563f
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed May  7 09:17:59 2014 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed May  7 09:17:59 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/apache.git;a=commit;h=fbdf004b

Replaced some bad host directives (bug #509772)

---
 2.4/conf/modules.d/00_mod_info.conf   | 2 +-
 2.4/conf/modules.d/00_mod_status.conf | 2 +-
 2.4/conf/modules.d/46_mod_ldap.conf   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/2.4/conf/modules.d/00_mod_info.conf b/2.4/conf/modules.d/00_mod_info.conf
index 928d4e2..2cd32c4 100644
--- a/2.4/conf/modules.d/00_mod_info.conf
+++ b/2.4/conf/modules.d/00_mod_info.conf
@@ -3,7 +3,7 @@
 # http://servername/server-info
 <Location /server-info>
 	SetHandler server-info
-	Require host 127.0.0.1
+	Require local
 </Location>
 </IfDefine>
 

diff --git a/2.4/conf/modules.d/00_mod_status.conf b/2.4/conf/modules.d/00_mod_status.conf
index a2fc39d..ed8b3c7 100644
--- a/2.4/conf/modules.d/00_mod_status.conf
+++ b/2.4/conf/modules.d/00_mod_status.conf
@@ -3,7 +3,7 @@
 # with the URL of http://servername/server-status
 <Location /server-status>
 	SetHandler server-status
-	Require host 127.0.0.1
+	Require local
 </Location>
 
 # ExtendedStatus controls whether Apache will generate "full" status

diff --git a/2.4/conf/modules.d/46_mod_ldap.conf b/2.4/conf/modules.d/46_mod_ldap.conf
index aa40888..883061f 100644
--- a/2.4/conf/modules.d/46_mod_ldap.conf
+++ b/2.4/conf/modules.d/46_mod_ldap.conf
@@ -11,7 +11,7 @@ LDAPOpCacheTTL		600
 
 <Location /ldap-status>
 	SetHandler ldap-status
-	Require host 127.0.0.1
+	Require local
 </Location>
 </IfDefine>
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/apache:master commit in: 2.4/conf/modules.d/
@ 2014-05-24 19:00 Lars Wendler
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Wendler @ 2014-05-24 19:00 UTC (permalink / raw
  To: gentoo-commits

commit:     021b4ea0c352c3ce95a9461e0f9ed08ef2019c90
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sat May 24 19:00:01 2014 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat May 24 19:00:01 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/apache.git;a=commit;h=021b4ea0

Renamed MaxRequestsPerChild to MaxConnectionsPerChild as per bug #511136.

---
 2.4/conf/modules.d/00_mpm.conf | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/2.4/conf/modules.d/00_mpm.conf b/2.4/conf/modules.d/00_mpm.conf
index 25981fc..bcb9b6b 100644
--- a/2.4/conf/modules.d/00_mpm.conf
+++ b/2.4/conf/modules.d/00_mpm.conf
@@ -18,8 +18,8 @@ PidFile /run/apache2.pid
 #
 # StartServers: Number of child server processes created at startup
 # MaxRequestWorkers: Maximum number of child processes to serve requests
-# MaxRequestsPerChild: Limit on the number of requests that an individual child
-#                      server will handle during its life
+# MaxConnectionsPerChild: Limit on the number of connections that an individual
+#                         child server will handle during its life
 
 
 # prefork MPM
@@ -32,7 +32,7 @@ PidFile /run/apache2.pid
 	MinSpareServers		5
 	MaxSpareServers		10
 	MaxRequestWorkers	150
-	MaxRequestsPerChild	10000
+	MaxConnectionsPerChild	10000
 </IfModule>
 
 # worker MPM
@@ -47,7 +47,7 @@ PidFile /run/apache2.pid
 	MaxSpareThreads		75
 	ThreadsPerChild		25
 	MaxRequestWorkers	150
-	MaxRequestsPerChild	10000
+	MaxConnectionsPerChild	10000
 </IfModule>
 
 # event MPM
@@ -61,7 +61,7 @@ PidFile /run/apache2.pid
 	MaxSpareThreads		75
 	ThreadsPerChild		25
 	MaxRequestWorkers	150
-	MaxRequestsPerChild	10000
+	MaxConnectionsPerChild	10000
 </IfModule>
 
 # peruser MPM
@@ -77,7 +77,7 @@ PidFile /run/apache2.pid
 	MinProcessors		2
 	MaxProcessors		10
 	MaxRequestWorkers	150
-	MaxRequestsPerChild	1000
+	MaxConnectionsPerChild	1000
 	ExpireTimeout		1800
 
 	Multiplexer nobody nobody
@@ -93,7 +93,7 @@ PidFile /run/apache2.pid
 	MinSpareServers		5
 	MaxSpareServers		10
 	MaxRequestWorkers	150
-	MaxRequestsPerChild	10000
+	MaxConnectionsPerChild	10000
 </IfModule>
 
 # vim: ts=4 filetype=apache


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/apache:master commit in: 2.4/conf/modules.d/
@ 2016-12-30 21:04 Lars Wendler
  0 siblings, 0 replies; 3+ messages in thread
From: Lars Wendler @ 2016-12-30 21:04 UTC (permalink / raw
  To: gentoo-commits

commit:     1c13f557b64f3f2aabd7665d76001704a354229e
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 30 21:04:05 2016 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Dec 30 21:04:05 2016 +0000
URL:        https://gitweb.gentoo.org/proj/apache.git/commit/?id=1c13f557

Added 41_mod_http2.conf to apache-2.4 modules.d directory.

 2.4/conf/modules.d/41_mod_http2.conf | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/2.4/conf/modules.d/41_mod_http2.conf b/2.4/conf/modules.d/41_mod_http2.conf
new file mode 100644
index 0000000..aac7504
--- /dev/null
+++ b/2.4/conf/modules.d/41_mod_http2.conf
@@ -0,0 +1,9 @@
+<IfDefine SSL>
+  <IfModule http2_module>
+    # enable logging for this module
+    LogLevel http2:info
+
+    #Enable HTTP/2 support
+    Protocols h2 h2c http/1.1
+  </IfModule>
+</IfDefine>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-12-30 21:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-07  9:19 [gentoo-commits] proj/apache:master commit in: 2.4/conf/modules.d/ Lars Wendler
  -- strict thread matches above, loose matches on Subject: below --
2014-05-24 19:00 Lars Wendler
2016-12-30 21:04 Lars Wendler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox