Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- hybrid
- swift
- Route53
- fanzeel
- NeXT
- 네이티브
- node.js
- ios
- 감사일기
- node
- https
- cors
- 알려줌
- 웹뷰
- 도메인
- angular4
- 안드로이드
- AWS
- Elastic Beanstalk
- react
- 카카오톡
- 페이스북
- TypeScript
- JavaScript
- beanstalk
- angular
- php
- Android
- nextjs
- S3
Archives
- Today
- Total
목록express (1)
쪼렙 as! 풀스택
Elastic Beanstalk - Load Balancer- Node - Express 에서 https 로 redirect 시키기.
빈스토크 - 로드밸런서를 쓰고 있는경우, http 인지 https 인지 구분하는 방법이 약간 특별해진다. 그 특별한 내용은 여기 참조...Elastic Beanstalk 에서 HTTPS 로 Redirect 시키려 한 삽질들... 이번엔 Node - Express 서버에서 리다이렉트를 시켜본다. const server = express() server.use(function(req, res, next) { const xForwrded = req.get('X-Forwarded-Proto') //로드밸런서경우, X-Forwarded-Proto 로, 어떤 요청으로 왔는지 알 수 있다. if(!!xForwrded && xForwrded !== 'https') { res.redirect('https://' + re..
개발 일지/AWS
2018. 8. 1. 14:52