From 3a33252f4daaa39bbb77110a1f1f29a4e3ec1546 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 16 Oct 2014 16:54:18 -0400 Subject: Add a new VirtualHost for testing TLS v1.2 Protocol is a per-server or Virtual Host setting so I added a new VH to do TLSv1.2 testing. It isn't as configurable as I'd like because the port is hardcoded but it'll do for now. --- test/createinstance.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/createinstance.sh') diff --git a/test/createinstance.sh b/test/createinstance.sh index 1eaa644..fac0a7d 100755 --- a/test/createinstance.sh +++ b/test/createinstance.sh @@ -13,6 +13,7 @@ mkdir -p $target cd $target mkdir alias +mkdir bin mkdir conf mkdir conf.d mkdir logs @@ -24,6 +25,11 @@ mkdir lib # Create the content mkdir content/rc4_cipher mkdir content/acl +mkdir content/protocolssl2 +mkdir content/protocolssl3 +mkdir content/protocoltls1 +mkdir content/protocoltls11 +mkdir content/protocoltls12 cat > content/index.html << EOF @@ -34,6 +40,11 @@ cp content/index.html content/acl/aclS01.html cp content/index.html content/acl/aclS02.html cp content/index.html content/acl/aclS03.html cp content/index.html content/secret-test.html +cp content/index.html content/protocolssl2/index.html +cp content/index.html content/protocolssl3/index.html +cp content/index.html content/protocoltls1/index.html +cp content/index.html content/protocoltls11/index.html +cp content/index.html content/protocoltls12/index.html ln -s /etc/httpd/modules modules -- cgit