GitLab Pages

From IndieWeb


GitLab Pages is a static content hosting service by GitLab.

Important differences to the older and more well-known GitHub Pages:

  • GitLab Pages allows using custom domains with HTTPS

IndieWeb examples

If you use or have tried GitLab Pages, please include yourself here and/or add learnings to this page!

Limitations

Case-insensitive Redirects

While not mentioned in their documentation, they are case-insensitive. They will use the first definition that matches the current request URL with this in mind.

For instance, having the following content in _redirects:

/redirect/one /target/page
/redirect/ONE /other/target/page

Will make it so that /redirect/one, /redirect/ONE and anything in between that doesn't map to an existing file to redirect to /target/page.