<aside> 📢 발표자: @Won-hee Cho 팀: 왭^^ (Web27) 발표일: 22-11-25
</aside>
<aside> 📌 목차
</aside>


getUserMedia()) → HTTPS 적용 필요Node.js에서 https 모듈 사용
https 리다이렉션만 맡는 서버를 따로 둔다면 리다이렉션 로직을 분리할 수 있겠다.요구사항
주소에 www가 포함되어 있는지 아닌지도 검사하길 원했음
요청한 전체 주소 그대로 유지한 채 http 스키마만 https로 바꾸길 원했음
<http://www.example.com/foo/bar> -> <https://www.example.com/> (X)
<http://www.example.com/foo/bar> -> <https://www.example.com/foo/bar> (O)
nginx로 적용 ☑️
