Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QRest: add enable-protocol to the documentation. #286

Merged
merged 2 commits into from
Oct 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading