You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can read more about <<server_ssl,SSL server configuration>>
2044
-
2045
-
==== HTTPS on the client
2046
-
2047
-
Client SSL/TLS is enabled with the `HttpClientOptions` {@link io.vertx.core.http.HttpClientOptions#setSsl(boolean) ssl} property or {@link io.vertx.core.http.RequestOptions#setSsl(java.lang.Boolean) ssl} property.
2048
-
2049
-
{@link io.vertx.core.http.HttpClientOptions#setSsl(boolean)} setting acts as the default client setting.
2034
+
SSL can also be enabled/disabled per request with {@link io.vertx.core.http.RequestOptions} or when
2035
+
specifying a scheme with {@link io.vertx.core.http.RequestOptions#setAbsoluteURI(java.lang.String)}
SSL can also be enabled/disabled per request with {@link io.vertx.core.http.RequestOptions} or when
2057
-
specifying a scheme with {@link io.vertx.core.http.RequestOptions#setAbsoluteURI(java.lang.String)}
2058
-
method.
2043
+
The {@link io.vertx.core.http.HttpClientOptions#setSsl(boolean)} setting acts as the default client setting.
2059
2044
2060
-
{@link io.vertx.core.http.RequestOptions#setSsl(Boolean)} overrides the default client setting.
2045
+
The {@link io.vertx.core.http.RequestOptions#setSsl(Boolean)} overrides the default client setting
2061
2046
2062
2047
* setting the value to `false` will disable SSL/TLS even if the client is configured to use SSL/TLS
2063
-
* setting the value to `true` will enable SSL/TLS even if the client is configured to not use SSL/TLS, the actual client SSL/TLS (such as trust, key/certificate, ciphers, ALPN, ...) will be reused
2048
+
* setting the value to `true` will enable SSL/TLS even if the client is configured to not use SSL/TLS, the actual
2049
+
client SSL/TLS (such as trust, key/certificate, ciphers, ALPN, ...) will be reused
0 commit comments