Trophia developed the Fisheries of New Zealand (FINZ) website during a project for the New Zealand Ministry of Fisheries (now the Ministry for Primary Industries).
Since then, the project has been incorporated into the work programme of Trident Systems and developed further.
This repository simply sets up a HTML redirect from http://finz.trophia.com to http://fonz.tridentsystems.co.nz.
We setup an empty Github pages branch to this repo:
git clone https://github.com/trophia/finz.git
cd finz
git checkout --orphan gh-pages
git rm -rf .Created index.html with the HTML redirect in it (and some other silly stuff no one should ever see)
Then pushed up the changes.
git add index.html
git commit -a -m "First pages commit"
git push origin gh-pagesCreated a file called CNAME with the one line finz.trophia.com in it so that
Github pages knows to point that domain at that index.html file.
On our zone file, created an A record for finz.trophia.com pointing to 204.232.175.78 (Github pages).
Done!