Griffin's website

Hello

This is Griffin's website. There's nothing here yet.

Logging in

To edit this site, you'll first need to log into the machine it's running on:

$ ssh -p 12262 griffin@griffin.pvsr.dev

To make this more convenient, you can edit ~/.ssh/config to add a shortcut:

Host griffin.pvsr.dev
    User griffin
    Port 12262

Then you can run just $ ssh griffin.pvsr.dev.

Editing

Once you've logged into the machine, you can make changes to this page by editing /srv/index.html. To add a new page at griffin.pvsr.dev/baseball, create a file called /srv/baseball/index.html.

You can either edit the files directly on the server, or edit them on your machine and copy them to the server using rsync. Assuming you've set up your ssh config, you can upload a local index.html to the server using:

$ rsync index.html griffin.pvsr.dev:/srv/index.html