Spring Boot configuration HTTPS one-way authentication and two-way authentication

Source: Internet
Author: User

Spring Boot Chinese Reference document address: http://oopsguy.com/documents/springboot-docs/1.5.4/index.html

Spring Boot SSL configuration section Documentation:

This copies the server.pfx and TRUSTORE.P12 to the src/main/resources/path.

One-way certification:

server.port:8443
Server.ssl.key-store:src/main/resources/server.pfx
server.ssl.key-store-password:123456

Two-way authentication:

server.port:8443
Server.ssl.key-store:src/main/resources/server.pfx
server.ssl.key-store-password:123456
Server.ssl.trust-store=src/main/resources/trustore.p12
server.ssl.trust-store-password=123456
Server.ssl.client-auth=need

Note: The Trust certificate section requires a KeyStore, not a single certificate, similar to Tomcat; If the server KeyStore also has a key pair password, you need to set the Server.ssl.key-password property

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.