Skip to content

Commit d1b5917

Browse files
committed
get mod_ssl working.
1 parent f61172a commit d1b5917

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/pyhttpd/conf.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ def replaceinstr(self, line):
5555
l = line.replace("TLSProtocol", "SSLProtocol")
5656
l = l.replace("+", "")
5757
l = l.replace("default", "all")
58-
l = l.replace("0x0303", "1.3") # need to check 1.2 and 1.1
58+
l = l.replace("0x0303", "1.2") # need to check 1.3 and 1.1
59+
elif line.startswith("SSLProtocol"):
60+
l = line # we have that in test/modules/tls/test_05_proto.py
5961
elif line.startswith("TLSHonorClientOrder"):
6062
# mod_ssl has SSLHonorCipherOrder on = use server off = use client.
6163
l = line.lower()

0 commit comments

Comments
 (0)