[express] http 요청을 https로 redirect해주기
2022. 5. 10. 12:21ㆍ각종 코딩 관련
app.enable('trust proxy');
app.use((req,res,next)=>{
if(process.env.NODE_ENV === 'production' && !req.secure){
return res.redirect('https://' + req.headers.host + req.url);
} else {
next();
}
})
'각종 코딩 관련' 카테고리의 다른 글
아직도 alert() 쓰니? 이제 예쁘고 사용성도 좋은 toast 띄우자 (react-hot-toast) (0) | 2023.01.26 |
---|---|
[React Native] Swiper 안에서 Array.map()으로 만든 컴포넌트가 한 View(한 페이지) 안에 뭉치는 버그 (0) | 2022.09.18 |
[Express] Error: listen EADDRINUSE: address already in use :::5000 오류 해결 (0) | 2022.03.28 |
Emotion에서 스타일에 property 전달하는 법 (조건부 스타일링) (0) | 2022.01.13 |
[jQuery] iframe 내 element의 스타일 수정하기 (0) | 2021.05.26 |