GitHub Pages: Difference between revisions

From IndieWeb
(Direct URL in dfn; pagelogo; cleaned up repetitive definition)
(chrisaldrich example using TiddlyWiki)
Line 39: Line 39:
== IndieWeb Examples ==
== IndieWeb Examples ==
Examples of IndieWeb sites hosted on Github Pages
Examples of IndieWeb sites hosted on Github Pages
=== Emma Hodge ===
* http://emmahodge.org/
* http://emmahodge.org/
=== Julie Anne Noying ===
* http://julieannenoying.com/
* http://julieannenoying.com/
=== Chris Aldrich ===
* Starting on 2020-04-02 {{chrisaldrich}} has a secondary website built on [[TiddlyWiki]] that uses GitHub Pages for hosting. He's detailed the process at [https://boffosocko.com/2020/04/04/self-hosting-tiddlywiki-with-github-pages/ Self-hosting TiddlyWiki with GitHub Pages]


== Limitations ==
== Limitations ==

Revision as of 21:40, 4 April 2020

GitHub Pages (aka gh-pages) is a static content hosting service offered by GitHub where you can host your static sites. They offer pre-built web page templates, as well as the ability to build and host Jekyll websites.

Why

Static content hosting is a form of web hosting that can be used for getting started on the IndieWeb.

Advantages

  • An advantage to using a GitHub based solution is that you can easily transfer it to another web host simply by deploying from GitHub to your web host.

How

Easy Start

The simplest way to get started with GitHub pages is:

domain related configuration

  • configure your domain for Github Pages
    • Note: when you add your custom domain to your settings page, this will automatically create a CNAME file
    • Additionally, on your domain configuration page, add these two custom resource records to your DNS: an β€œ@” type A records that points to the GitHub IPv4 address 192.30.252.153 and a β€œwww” CNAME record that points to your USERNAME.github.io url.
  • enable HTTPS support

Guides

There are several more involved guides on how (and approaches) to use GitHub Pages to host your website:

Fork and go

Some websites provide ready-to-fork repositories that one can use to get started. These *don't* have to be used with GitHub, but they are configured to use GitHub pages by default.

  • Octopress provides a rich website construction toolkit, based on top of Jekyll.
  • pjf.id.au has his entire website under CC-BY, with a branch on github specifically for forking the design and build process. Like Octopress, it uses Jekyll underneath. See the github repo for details.
  • coisas is a browser-based CMS that works only with GitHub Pages, it has a template that can be forked from the website UI, and then worked on without need of ever touching the command line.

IndieWeb Examples

Examples of IndieWeb sites hosted on Github Pages

Emma Hodge

Julie Anne Noying

Chris Aldrich

Limitations

No HTTP Status Code Control

gh-pages does not allow you to setup custom HTTP [status] return codes. -bret (in IRC 2013-176, unlogged).

If a page exists, GitHub Pages will return "200 OK"

If a page does not exist, or was deleted, GitHub Pages will return "404 Not Found"

For some as yet unknown reason, GitHub Pages will return a 301 redirect to the same URL on the first request to a page in a "while". On subsequent requests, it will return the actual page content.

There is ongoing discussion on using http-equiv codes to work around limitations like these. See: deleted#Brainstorming

Limited file types

GitHub isn't a very good host for large media files, especially if they change, although there is nothing stopping you from uploading media. Only serve files from gh-pages, as raw repository links have to come out of some application layer, and thus are slower to retrieve. Github enforces a soft repository size limit of about 1Gb.

Jekyll Safe Mode

If you wish for GitHub to build your Jekyll website for you on their server, you must conform to the restrictions associated with jekyll safe mode, which means no plugins. You can pre-process with as many plugins as you want and upload raw html files instead as a simple workaround (similar to how octopress works).

Criticism

As Github Pages is part of Github, it suffers from the same weakness - see the Github page for details about them.

See Also