ref: ea5a9a9b07f1d68034379792cc0ed501ef9bd3bb
dir: /this.md/
About this ========== Other than the git content repository—at the moment hosted on sourcehut—the docs system runs and is hosted by 9front software on a 9front machine. This page intends to document how this is done. The software ------------ Ori's [git9](https://github.com/oridb/git9) is used for pulling content updates from the repository. kvik's [ugh!](http://src.a-b.xyz/ugh) site generator renders the content, mainly the HTML pages. ugh! depends on [discount](https://github.com/Orc/discount) markdown processor by default. cinap's [tcp80](http://felloff.net/tcp80.tgz) which has been slightly [modified](http://src.a-b.xyz/tcp80) serves the web clients. kvik's [unionfs](http://src.a-b.xyz/unionfs) serves the 9p clients. The setup --------- The rest is a glue provided through standard 9front mechanisms. ### Starting off ; git/clone git://src.a-b.xyz/ugh /usr/doc ; git/clone https://git.sr.ht/~kvik/docs.9front.org /usr/doc/data ; mkdir /usr/web ### Updates Checking for updates and triggering page regeneration is done by a custom script running once per minute. This should move to cron. ### Serving 9p 9p clients are served by unionfs, spawned by system network listener. `/cfg/$sysname/service/tcp909` #!/bin/rc # Runs as 'none'. exec /bin/unionfs -i /usr/doc/public ### Serving HTTP Web clients are served by tcp80, spawned by system network listener. `/cfg/$sysname/service/tcp80` #!/bin/rc exec /bin/tcp80 -n /usr/doc/cfg/webns The namespace file `/usr/doc/cfg/` simply binds the `public/` directory to the web root: bind /usr/doc/public /usr/web TODO ---- - Styling web pages for readability - site links in page templates: home, recently changed, sitemap. - include site name in page title - Move updates to cron - Auto-linking - Auto-indexing