📚 [Jekyll] S3에 호스팅하기
Category: Jekyll | 📅 August 20, 2021
준비물
- Jekyll 블로그 (설치는 PASS! 그래도 궁금하면.. 여기 참고 )
- s3 접속정보
- s3_id
- s3_secret
- s3_bucket
환경준비
$ jekyll new [site-name]
$ cd []site-name]
$ gem install s3_website
$ s3_website cfg create
s3_webiste.yml 편집하기
# You can remove the first two lines to have credentials read from
# the environment variables AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY or
# ~/.aws/credentials.
s3_id: YOUR_AWS_S3_ACCESS_KEY_ID
s3_secret: YOUR_AWS_S3_SECRET_ACCESS_KEY
s3_bucket: 사용할 도메인
적용하기
$ s3_website cfg apply
이후의 사이트 만드는 방법은 기존 방법과 같고.. ( css , html 작성 T_T)
배포하기
$ s3_website push
💭 Reviews
가급적, contents를 다 만들고 s3에 업로드 하세!
인터넷에 이렇게 잘 정리해주는 분들이 있어서 매우 고마움. :)
📖 Please Note that...
[Usefulparadigm blog]