Skip to content

Commit

Permalink
Explicitly exclude SSLv3 in older oraclehttp versions
Browse files Browse the repository at this point in the history
  • Loading branch information
janbrasna authored Oct 17, 2024
1 parent ea1349d commit 3f90705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/partials/oraclehttp.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</VirtualHost>

# {{form.config}} configuration
SSLProtocol All {{#unless (includes "TLSv1" output.protocols)}}-TLSv1{{/unless}}{{#unless (includes "TLSv1.1" output.protocols)}} -TLSv1.1{{/unless}}
SSLProtocol All{{#unless (minver "12.2.1" form.serverVersion)}} -SSLv3{{/unless}}{{#unless (includes "TLSv1" output.protocols)}} -TLSv1{{/unless}}{{#unless (includes "TLSv1.1" output.protocols)}} -TLSv1.1{{/unless}}
SSLCipherSuite {{{join output.ciphers ":"}}}
{{#if (minver "12.2.1" form.serverVersion)}}
SSLHonorCipherOrder {{#if output.serverPreferredOrder}}on{{else}}off{{/if}}
Expand Down

0 comments on commit 3f90705

Please sign in to comment.