ngrok 사용하기
- 로컬환경에서 ssl을 사용하고 싶은 경우
- localhost를 외부에서 호출하고 싶은 경우
ngrok 사용하기.
설치하기(다운로드)
- 사이트 -> 다운로드 -> 압축해제
실행
mac or linux
./ngrok http 8080
windows
./ngrok.exe http 8080
npm로 설치하기
설치
npm install -g ngrok
실행
ngrok http 8080
Session Expire
- 한 세션은 8시간만 유지된다. (재실행하면 다시 8시간으로 변경됨)
- 회원 가입 후 아래 링크에서 AuthToken을 가지고 온다.
- 추가 전
- 추가 후
ngrok http 8080 –authtoken=[AuthToken]
참고링크
-
https://github.com/bubenshchykov/ngrok
-
https://dol2156.tistory.com/515