Bootstrapped the site from scratch following a data loss event. Set up a simple HTML/CSS page served from nginx. Added a navbar with the index page anchored in the top-left, a blog page link, and a link to the Forgejo instance. Added contact info and a genealogy blurb to the index page. Added an example resume page linked from the navbar.
15 lines
No EOL
248 B
Bash
Executable file
15 lines
No EOL
248 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
sudo cp -rt /srv/www/binning.net \
|
|
blog \
|
|
includes \
|
|
index.html \
|
|
blog.html \
|
|
resume.html \
|
|
style.css \
|
|
404.html
|
|
|
|
sudo chown -R nginx:nginx /srv/www/binning.net/
|
|
|
|
sudo cp -t /etc/nixos/ \
|
|
nginx.nix |