Welcome

Hi! Thanks for stopping by!

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.

[Read more]