똑같은 삽질은 2번 하지 말자
Spring Boot 개념다지기 No.4 본문
아 저장을 깜빡하고 날리고 다시쓴다. 대충쓰자
오늘한건 HTTPS 설정과 HTTP2의 설정
https://americanopeople.tistory.com/115
https://opentutorials.org/course/228/4894 https://gist.github.com/keesun/f93f0b83d7232137283450e08a53c4fd
HTTPS설정을 위해서 인증서를 (keystore)를 만들어야 하는데
인증서를 만들고 application.properties에
server.port = 8443
server.ssl.key-store = classpath:sample.jks
server.ssl.key-store-password = secret
server.ssl.key-password = password
그리고 HTTP2 설정은 웹컨테이너에 따라 다르다.
Tomcat 9 + jdk 9 면 따로 설정은 필요없다.
'Spring > Spring Boot' 카테고리의 다른 글
Spring Boot 개념다지기 No.6(SpringApplication, 외부설정) (0) | 2020.04.25 |
---|---|
Spring Boot 개념다지기 No.5 (0) | 2020.04.25 |
Spring Boot 개념다지기 No.3 (0) | 2020.04.21 |
The server time zone value '???' is unrecognized or represents more than one time zone. (0) | 2020.04.20 |
Spring Boot 개념다지기 No.2 (0) | 2020.04.19 |
Comments