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
verify - (optional) SSL certificates (a.k.a CA bundle) used to verify the identity of requested hosts. Either True (default CA bundle), a path to an SSL certificate file, an ssl.SSLContext, or False (which will disable verification).
Evaluate the existing AITs and see which ones would be candidates for adding coverage for HTTP/2 support.
List of HTTP/2 client and server frameworks:
https://docs.google.com/spreadsheets/d/150ntwH2aO9Sr6mg0lVVkNScmLKSJpxNZXhqAoTHKo5U/edit?gid=0#gid=0
Enable HTTPS and HTTP/2 for Spring Boot 3 / Spring Framework 6 Apps
Generate a self signed localhost cert:
-keystore keystore.p12 -storetype PKCS12 -storepass password -validity 9999
This will create the keystore
keystore.p12
in the current folder. Copy this file into thesrc/main/resources
folder of the application.Update the
application.properties
orapplication.yml
file to reference the keystore:This will start the app with HTTPS and HTTP/2 support listening on port 8443.
The text was updated successfully, but these errors were encountered: