Skip to content

Commit

Permalink
Merge pull request #286 from fgonzal/master
Browse files Browse the repository at this point in the history
QRest: add `enable-protocol` to the documentation.
  • Loading branch information
ar authored Oct 20, 2023
2 parents 558669e + 2193300 commit 733e6f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion doc/src/asciidoc/module_qrest.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ we've created a little **QRest** module that can be configured like this:
<property name="enabled-cipher" value="TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA" /> <9>
<property name="enabled-cipher" value="TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256" />
<property name="enabled-cipher" value="TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384" />
<property name="enable-protocol" value="TLSv1.2" /> <10>
<property name="enable-protocol" value="TLSv1.3" />
...
...
</qrest>
Expand All @@ -55,7 +57,8 @@ we've created a little **QRest** module that can be configured like this:
<6> Keystore location
<7> Store password
<8> Key password
<9> Enabled ciphers (optional, defaults to 'all' if not present)
<9> Enabled cipher suites (optional, defaults to 'all' if not present)
<10> Enabled protocols (optional, defaults to 'all' if not present)

Once the server receives an HTTP request, it creates a `org.jpos.transaction.Context`, places a reference to the http request
(under the Constant name `REQUEST` defined in the `org.jpos.qrest.Constants` enum), and to the session in the `SESSION`
Expand Down

0 comments on commit 733e6f4

Please sign in to comment.