In this short post, I’ll explain how to configure a Japanese keyboard on Arch Linux.
Welcome
Hi! Thanks for stopping by!
Custom subdomain on Github Pages
This post describes the procedure to follow in order to configure a subdomain on a website hosted with Github Pages.
Using a custom domain with Gitlab
Setting up GitLab pages
To use a custom domain with GitLab you first need a website published with GitLab pages. Follow the documentation for a detailed explanation. For a quick start, you can create a Pages website using a template like this one
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master
which is the config used for my own website.