Skip to content

Commit c82c0f5

Browse files
committed
Fix property name for the default SSL protocol
1 parent 8add268 commit c82c0f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/embedded/src/org/labkey/embedded/LabKeyServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public static void main(String[] args)
119119
// in application.properties, like the key store. Without those other settings,
120120
// HTTP-only startup fails unless "server.ssl.enabled" is explicitly set to false here
121121
put("server.ssl.enabled", "false");
122-
put("#server.ssl.protocol", "TLS");
122+
put("server.ssl.protocol", "TLS");
123123
put("server.ssl.enabled-protocols", "TLSv1.3,TLSv1.2");
124124
// Use explicit JSSE cipher suite names to avoid CBC-mode suites
125125
put("server.ssl.ciphers",

0 commit comments

Comments
 (0)