You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2016/07/20 15:29:13 UTC

svn commit: r1753537 - in /httpd/test/mod_h2/trunk: Makefile.am conf/sites/test.example.org.conf

Author: icing
Date: Wed Jul 20 15:29:13 2016
New Revision: 1753537

URL: http://svn.apache.org/viewvc?rev=1753537&view=rev
Log:
adding new directive H2CopyFiles in some places

Modified:
    httpd/test/mod_h2/trunk/Makefile.am
    httpd/test/mod_h2/trunk/conf/sites/test.example.org.conf

Modified: httpd/test/mod_h2/trunk/Makefile.am
URL: http://svn.apache.org/viewvc/httpd/test/mod_h2/trunk/Makefile.am?rev=1753537&r1=1753536&r2=1753537&view=diff
==============================================================================
--- httpd/test/mod_h2/trunk/Makefile.am (original)
+++ httpd/test/mod_h2/trunk/Makefile.am Wed Jul 20 15:29:13 2016
@@ -160,6 +160,17 @@ $(GEN)/load-h2cproxy-urls-1.txt: test/lo
 
 MAX_STREAMS = 100
 
+h1load: \
+		$(SERVER_DIR)/.test-setup \
+        $(GEN)/load-urls-1.txt
+	$(H2LOAD) -c 100 -t 10 -n 100000 -m 1 https://$(HTTPS_AUTH)/index2.html --h1
+	$(H2LOAD) -i $(GEN)/load-urls-1.txt -n 200000 -t 1 -m 1 -c 1 --h1
+	$(H2LOAD) -i $(GEN)/load-urls-1.txt -n 200000 -t 2 -m 1 -c 2 --h1
+	$(H2LOAD) -i $(GEN)/load-urls-1.txt -n 200000 -t 4 -m 1 -c 4 --h1
+	$(H2LOAD) -i $(GEN)/load-urls-1.txt -n 200000 -t 4 -m 1 -c 8 --h1
+	$(H2LOAD) -i $(GEN)/load-urls-1.txt -n 200000 -t 4 -m 1 -c 16 --h1
+	$(H2LOAD) -i $(GEN)/load-urls-1.txt -n 200000 -t 4 -m 1 -c 32 --h1
+
 h2load: \
 		$(SERVER_DIR)/.test-setup \
         $(GEN)/load-urls-1.txt

Modified: httpd/test/mod_h2/trunk/conf/sites/test.example.org.conf
URL: http://svn.apache.org/viewvc/httpd/test/mod_h2/trunk/conf/sites/test.example.org.conf?rev=1753537&r1=1753536&r2=1753537&view=diff
==============================================================================
--- httpd/test/mod_h2/trunk/conf/sites/test.example.org.conf (original)
+++ httpd/test/mod_h2/trunk/conf/sites/test.example.org.conf Wed Jul 20 15:29:13 2016
@@ -50,6 +50,12 @@
         Header unset Upgrade
     </IfModule>
 
+    <IfVersion >= 2.4.24>
+    <Location /006>
+        H2CopyFiles On
+    </Location>
+    </IfVersion>
+
     <Location /006-push.html>
         Header add Link "</006/006.css>;rel=preload"
         Header add Link "</006/006.js>;rel=preloadX"
@@ -173,6 +179,12 @@
     # internal redirect rewrite
     RewriteRule /redirect(.*) $1 [PT]
 
+    <IfVersion >= 2.4.24>
+    <Location /006>
+        H2CopyFiles On
+    </Location>
+    </IfVersion>
+
     <Location /006-push.html>
         Header add Link "</006/006.css>;rel=preload"
         Header add Link "</006/006.js>;rel=preloadX"