1. Consideration 1.1. Use S3 At first, I tried to host Github Pages for a home page. However, github says I need to upgrade github account or make repository public to host web page. So, I decided host my minimal page to Amazon S3.
1.2. HTTPS According to Amazon S3 ユーザーガイド S3 を使用して静的ウェブサイトをホスティングする,
Amazon S3 ウェブサイトエンドポイントは HTTPS をサポートしていません。Amazon S3 バケットで HTTPS を使用する方法については、以下を参照してください。
CloudFront を使用して Amazon S3 バケットに対する HTTPS リクエストを処理するにはどうすればよいですか?
I want to migrate my former site on wordpress to here (Hugo on gitlab.io) with keeping domain.
I tried several ways, but the best is just following official GitLab Docs - Custom domains and SSL/TLS Certificates].
Existing my domain Website () 1. Requirements: A GitLab Pages website up and running, served under the default Pages domain (*.gitlab.io, for GitLab.com) A custom domain name example.com or subdomain subdomain.
I transit some of my past Wordpress articles to lesson pages in this site by Hugo.
What I did are:
Setup ExitWP tool Export wordpress data Data preprocessing Convert wordpress files to markdown Locate image files to hugo content Convert hugo meta descriptions in articles 1. Setup ExitWP tool Gohugo page sugests some options to migrate wordpress to hugo. I firstly tried wordpress-to-hugo-exporter, but it looks I have to do many on AWS bitnami wordpress environment.
How to solve errors on git remote repository access Sometime, we encounter error to pull or push repository from github, gitlab or company’s remote git space. I like to keep note about how I do resolve it for my future work.
git status 1 2 3 4 5 $ git status On branch master Your branch is up to date with 'origin/master'. nothing to commit, working tree clean If git status says there are anything unstaged or not committed in local repository, do git add <file path> and git commit -m <commit message>.