분류 전체보기
-
Certbot을 통해 무료 SSL 발급받기(임시 및 갱신)DEV/other things 2024. 8. 19. 18:01
certbot으로 ssl 발급 - 도메인은 미리 준비하자 - 가비아와 같은 서비스를 이용하면 저렴하게 이용 가능한 도메인이 존재함// apt updatesudo apt update// certbot 설치sudo apt install certbot python3-certbot-nginx// nginx에서 발급받아야 함.// systemctl status nginxsudo systemctl stop nginx// 방화벽 확인sudo ufw allow 80sudo ufw allow 443// 도메인은 미리 준비하자. (본인은 가비아 사용)sudo certbot --standalone -d certonly// 다음과 같이 진행됨// Saving debug log to /var/log/letsencrypt/le..
-
Zendesk ZCLI React App 생성DEV/other things 2024. 6. 14. 14:04
1. libsecret 설치https://seokbong.tistory.com/291 libsecret install// Debian/Ubuntusudo apt install libsecret-1-dev// Red Hat-basedsudo yum install libsecret-devel// Arch Linuxsudo pacman -S libsecret// MAC OSsudo brew install libsecretseokbong.tistory.com 2. zendesk zcli 설치// 설치npm install @zendesk/zcli -g// 확인zcli help 3. profile 등록// 로그인zcli login -i// 프로필 확인zcli profiles:list// 프로필 변경zcli prof..