DEV
-
Zendesk ZCLI React App 생성DEV/other things 2024. 6. 14. 14:04
2025ver https://developer.zendesk.com/documentation/apps/build-an-app/using-react-in-a-support-app/ Using React in a Support appDeveloper documentation for products at Zendeskdeveloper.zendesk.com1. zcli 설정 후 앱 생성(하단의 2, 3, 4 항목까지 동일) - 앱을 생성한 후 해당 폴더에서 "npm install" 하는거 까먹지 않기.2. npm run build >> dist 폴더 생성함3. zcli apps:server dist >> 로컬에서 실행 - https://{zendesk domain}?zcli_apps=true 1. libsec..
-
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..