HeyCong/blog 8

github 커스텀 도메인 설정

Custom domain = blog.heycong.com 1. 도메인 네임서버 관리 시스템(DNSZi)에서 A레코드에 네가지 IP주소 추가 ( EX A레코드 blog.heycong.com) 2. 아래 사진과 같이 나오면 반영이 된것 3. 사이트 배포한 repository ( https://github.com/ucong2222/ssg-2020-12 ) settings 접속 4. Custom domain에 blog.heycong.com 입력후 SAVE 5. Enforce HTTPS 체크 * 24시간 지났는데도 변경이 안되면 Custom domain 재입력 결과물 https://blog.heycong.com

HeyCong/blog 2020.12.23

github페이지를 이용한 배포

1. github 에서 새로운 repository 생성 - https://github.com/ucong2222/ssg-2020-12 * 생성 전에 settings->Repositories-> defult branch가 main이면 master로 변경 2. 배포할 파일에 git bash - site 3. git init 4. git remote add origin [repository 주소] - git remote add origin https://github.com/ucong2222/ssg-2020-12 5. git add . 6. git commit -m "첫배포" 7. git push origin master 8. https://github.com/ucong2222/ssg-2020-12에서 setti..

HeyCong/blog 2020.12.23