Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- git pair
- 객체참조 #객체
- 클로저
- jest
- ESLint
- url #querystring
- OOP
- NPM
- 기후변화
- this
- #cloudfront #s3 #html 확장자 없애기
- TypeScript
- lightsail nodejs apache
Archives
- Today
- Total
Hello World...
nest.js "secretOrPrivateKey must have a value" error 본문
process.env.JWT_SECRET 값을 제대로 읽지 못하는 문제가 있었다.
dotenv 모듈도 설치도 하고 config 설정도 해주었지만 문제가 해결되지는 않았다.
해결 방법은 굉장히 단순했다.
백틱으로 감싸주니 문제가 해결되었다.
- jwt.strategy.ts
import { Injectable } from '@nestjs/common';
import { PassportStrategy } from '@nestjs/passport';
import { ExtractJwt, Strategy } from 'passport-jwt';
@Injectable()
export class JwtStrategy extends PassportStrategy(Strategy) {
constructor() {
super({
jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(),
ignoreExpiration: false,
secretOrKey: `${process.env.JWT_SECRET_KEY}`,
});
}
아래와 같이 변경하자
process.env.JWT_SECRET_KEY ====> `${process.env.JWT_SECRET_KEY}`
라고 생각했는데, 실제로 해결된 것은 아니었다.
진짜 해결 방법은 간단했다.
app.module.ts 뿐만 아니라 auth.module.ts 에도 config 설정을 해주어야 했다
imports: [
ConfigModule.forRoot({
envFilePath:
process.env.NODE_ENV === 'production' ? '.env' : '.env.development',
}),
]
...
참고)
https://dev.to/emmanuelthecoder/how-to-solve-secretorprivatekey-must-have-a-value-in-nodejs-4mpg
'nest.js' 카테고리의 다른 글
nest.js swagger 문서에서 특정 api 안 보이게 하기 (0) | 2023.02.17 |
---|---|
swagger api 문서 페이지 접근시 아이디, 암호 인증 (0) | 2022.11.24 |
nest js dot env 환경에 따른 설정 (0) | 2022.08.20 |
Comments