From 4d1d637c911f3dab3e50cb57e925a40452ea4c06 Mon Sep 17 00:00:00 2001 From: JangAJang <99702271+JangAJang@users.noreply.github.com> Date: Fri, 15 Dec 2023 22:50:39 +0900 Subject: [PATCH] =?UTF-8?q?[NDD-374]:=20=EB=A6=AC=EB=93=9C=EB=AF=B8?= =?UTF-8?q?=EC=97=90=20=EB=B8=94=EB=A1=9C=EA=B7=B8=20=EB=AC=B8=EC=84=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20(0.1h=20/=200.1h)=20(#205)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * refactor: 모든 상황에서 캐싱을 하지 않게 수정 * docs: 리드미에 프로젝트 활동 문서 추가 --- BE/src/main.ts | 5 +---- README.md | 5 ++++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BE/src/main.ts b/BE/src/main.ts index 821a678..251405a 100644 --- a/BE/src/main.ts +++ b/BE/src/main.ts @@ -6,7 +6,6 @@ import { CORS_CONFIG } from './config/cors.config'; import * as cookieParser from 'cookie-parser'; import { initializeTransactionalContext } from 'typeorm-transactional'; import { LoggerService } from './config/logger.config'; -import { NO_CACHE_URL } from './constant/constant'; async function bootstrap() { initializeTransactionalContext(); @@ -21,9 +20,7 @@ async function bootstrap() { setupSwagger(app); // 캐시 제어 미들웨어 등록 expressApp.use((req, res, next) => { - if (NO_CACHE_URL.includes(req.url)) { - res.setHeader('Cache-Control', 'no-cache'); - } + res.setHeader('Cache-Control', 'no-cache'); logger.info(req.url); next(); }); diff --git a/README.md b/README.md index 62720b6..c301ded 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ ### 서비스의 안전성을 위한 노력 - custom 에러 코드를 작성후 sentry로 수집 - [윤해민](#윤해민) - FE 4개의 계층으로 에러 계층 분리해서 관리 - [윤해민](#윤해민) -- BE 로깅, docker 죽을때 되살아나게 (여기에 적어주세요) - [이장희](#이장희) +- BE 로깅, docker 죽을때 되살아나게 - [이장희](#이장희) ### 팀 문화를 위한 노력 - [코드 스타일을 맞추기 위한 노력](https://github.com/boostcampwm2023/web14-gomterview/pull/27) @@ -117,7 +117,10 @@ - [[NestJS] 쿼리 헤치우기(1. 인덱스 넣기 & 쓸데없는 쿼리 줄이기) - 이장희](https://jangsarchive.tistory.com/147) +- [[NestJS] 쿼리 헤치우기(2. 트랜잭션화 하기, 그리고 이걸로 테스트하기 === 왜이래이거;;) - 이장희](https://jangsarchive.tistory.com/151) - [Team NDD. 영상 인코딩~클라우드 업로딩까지의 험난한 여정(그리고 쓰지 못한 이유...)](https://jangsarchive.tistory.com/148) +- [[Infra] 난 도커만 하면 다 괜찮을 줄 알았지...(어. 안돼. 그건 사실이야.) - 이장희](https://jangsarchive.tistory.com/149) +- [[NestJS] 헬스체크?? 라잇웨잇베이베!!!(Cron, HealthCheck로 주기적으로 서버 확인하기, 로깅하기)](https://jangsarchive.tistory.com/150) ### 조용헌