분류 전체보기
-
Nginx 로그 설정DEV/other things 2024. 6. 11. 16:07
// 로그 수정sudo vi /etc/nginx/nginx.conf //===================================// nginx.conf 내용 변경http { # http 블럭 내부 내용... # 하단 로그 포멧 추가 log_format custom '"$time_local" client=$remote_addr ' 'method=$request_method request="$request" ' 'request_length=$request_length ' 'status=$status bytes_sent=$bytes_sent ' 'bod..
-
Node js X-API-KEY 생성기 (발급)DEV/javascript 2024. 6. 10. 13:59
사실 API-KEY를 랜덤하게 생성해주는 웹 사이트도 많다. 아무거나 사용해도 무관하다. const crypto = require('crypto');// 무작위 api-key 발급function generateApiKey() { return crypto.randomBytes(32).toString('hex'); }const apiKey = generateApiKey();console.log(`Generated API Key: ${apiKey}`); 위 코드로 발급하여 사용 가능 사용 예시// Request 예시const url = ${API_TARGET_URL};const options = { method: 'POST', headers: { 'Content-Type': 'application/j..