alexw.nyc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.alexwennerberg.com/alexw.nyc
Log | Files | Refs | README

commit e89f48b6937dc650b1283394be00281acb2163e6
parent d8b04abdcc69f3fa32f0801fc366021056b5c71f
Author: alex wennerberg <alex@alexwennerberg.com>
Date:   Sat,  8 Apr 2023 19:08:57 -0400

more content

Diffstat:
Msrc/blog/index.html | 2++
Asrc/lists/books.html | 27+++++++++++++++++++++++++++
Asrc/lists/index.html | 5+++++
Msrc/tech/server-guide.html | 12++++++++++--
Mtemplates/header.html | 4+++-
5 files changed, 47 insertions(+), 3 deletions(-)

diff --git a/src/blog/index.html b/src/blog/index.html @@ -1,3 +1,5 @@ <h1>blog</h1> +<p>More to come soon.</p> + <a href="https://alex.flounder.online/gemlog/">Old Gemini Blog</a> diff --git a/src/lists/books.html b/src/lists/books.html @@ -0,0 +1,27 @@ +<h1>books</h1> + +books I've read. email me if you want to chat about any of them + +<h2>2023</h2> +<ul> + <li>A Traversal Network of Feminist Servers</li> + <li>Time and Free Will -- Henri Bergson</li> +</ul> + +<h2>2022</h2> +<ul> + <li>Nietzsche and Philosophy -- Gilles Deleuze</li> + <li>A Promised Land -- Barack Obama</li> + <li>Internet For the People -- Ben Tarnoff</li> + <li>Nevada -- Imogen Binnie</li> + <li>The Novelist -- Jordan Castro</li> + <li>What I Talk About When I Talk About Running -- Haruki Murakami</li> + <li>Something To Do With Paying Attention -- David Foster Wallace</li> + <li>Tomorrow Sex Will Be Good Again -- Katherine Angel</li> + <li>Dune -- Frank Herbert</li> + <li>Starting Forth -- Leo Brodie</li> + <li>The Utopia of Rules -- David Graeber</li> + <li>Fungirl -- Elizabeth Pich</li> + <li>Atomic Habits -- James Clear</li> + <li>Nietzsche -- The Anti-Christ</li> +</ul> diff --git a/src/lists/index.html b/src/lists/index.html @@ -0,0 +1,5 @@ +<h1>Lists</h1> + +Some lists. +<br> +<a href="books.html">books I've read</a> diff --git a/src/tech/server-guide.html b/src/tech/server-guide.html @@ -73,14 +73,15 @@ and how different installation methods may or may not meet them. </p> unreliable storage medium, and may fail for any reason. I have not found reliable information about SD card wear and how to avoid it, so I tried the SD card as inherently unstable and make sure to have regular backups.</p> +<p>For my Alpine installation on the Rasbperry Pi, I uase a combination of this</p> <a href="https://wiki.alpinelinux.org/wiki/Raspberry_Pi">wiki</a> guide, using diskless install, plus a few bind-mounted filesystems, as described in <a href="https://thiagowfx.github.io/2022/01/alpine-linux-on-raspberry-pi-diskless-mode-with-persistent-storage/">this guide</a>. <h2>Router</h2> <p>I use <em>OpenWRT</em> as my router software. I much prefer this to using proprietary, -commercial software, whose security I cannot vouch for. </p> +commercial software, whose security I cannot vouch for.</p> <p>OpenWRT does not auto-update. You'll need to keep on top of security updates and patch your router regularly. </p> <h3>Configuration</h3> <p>I put my publicly-facing infrastructure on a separate VLAN so it should not be -able to access anything else if it is compromised.</p> +able to access anything else if it is compromised. A combination of these two guides, plus reading and understanding OpenWRT docs, should get you a VLAN set up: <a href="https://openwrt.org/docs/guide-user/firewall/fw3_configurations/fw3_dmz">cli guide</a> <a href="https://forum.openwrt.org/t/guide-to-set-up-dmz-via-luci/21616">web iface guide</a></p> <h2>Security</h2> <p>Opening up your network to the public internet means that you'll have to take security seriously. A misconfiguration can mean compromising your server, and @@ -100,4 +101,11 @@ how things are laid out. </p> <h3>Monitoring</h3> <p>I use rrdtool for monitoring, which is an older and much lighter-weight alternative to something like Prometheus</p> <h2>Other helpful resources</h2> +<ul> + <li> + <a href="https://www.ooooo.be/atraversalnetworkoffeministservers/">A Traversal Network of Feminist Servers</a> + </li> + <li><a href="https://www.youtube.com/watch?v=fx3XcKy7LJY&t=1200s">Counter Cloud Strategies</a></li> + <li><a href="https://areyoubeingserved.constantvzw.org/Summit_afterlife.xhtml">Feminist Server Manifesto</a></li> +</ul> <p>For anyone interested in setting up their own home infrastructure, I am happy to help, please send me an email at <a href="mailto:alex@alexwennerberg.com">alex@alexwennerberg.com</a></p> diff --git a/templates/header.html b/templates/header.html @@ -5,7 +5,7 @@ <link rel="stylesheet" type="text/css" href="/style.css"> <link rel="icon" type="image/png" - href="http://alexw.nyc/icon.png"> + href="https://alexw.nyc/icon.png"> <title>alexw.nyc</title> </head> <header> @@ -18,6 +18,7 @@ <ul> <li><a href="/about.html">about</a></li> <li><a href="/now.html">now</a></li> + <li><a href="/lists">lists</a></li> <li><a href="/tech/index.html">tech</a></li> </ul> </section> @@ -25,6 +26,7 @@ <h2>Writing</h2> <ul> <li><a href="/poetry">poetry</a></li> + <li><a href="/blog">blog</a></li> </ul> </section> </nav>