똑같은 삽질은 2번 하지 말자

Spring Boot 개념다지기 No.4 본문

Spring/Spring Boot

Spring Boot 개념다지기 No.4

곽빵 2020. 4. 24. 01:04

아 저장을 깜빡하고 날리고 다시쓴다. 대충쓰자 

 

오늘한건 HTTPS 설정과 HTTP2의 설정

https://blog.sonim1.com/99

 

10. HTTPS란?

HTTPS란? HTTP 프로토콜은 위장이나 도난등의 보안문제가 발생할 수 있습니다. 이런 문제를 방지해주는 HTTPS에 대해 알아봅시다. HTTP의 약점 HTTP는 주로 다음과 같은 약점을 가지고 있습니다. 평문(암호화 하..

blog.sonim1.com

https://americanopeople.tistory.com/115

 

[HTTP] HTTP 2의 탄생 배경과 특징

팀에서 HTTP 2에 대한 내용을 간단하게 ㅎㅎ 발표하기로 했다. 그래서 준비중이다. 그런데 피피티로 쓰는 것 보다 글로 정리하는게 더 나을것 같아서, 에버노트 대신 블로그에 포스팅을 하려고 한다. ( 결국 이 포..

americanopeople.tistory.com

 

https://opentutorials.org/course/228/4894 https://gist.github.com/keesun/f93f0b83d7232137283450e08a53c4fd 

 

Spring Boot SSL Sample (self signed)

Spring Boot SSL Sample (self signed). GitHub Gist: instantly share code, notes, and snippets.

gist.github.com

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 면 따로 설정은 필요없다.

Comments