stacks/homelab/www/index.html

88 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Deer Grove</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: sans-serif;
background: #efe;
}
section {
margin: 3em auto;
max-width: 30em;
}
menu, ul {
margin-block: auto;
padding-inline: inherit;
list-style: none;
}
li {
margin: 1em;
}
</style>
</head>
<body>
<h1>Deer Grove</h1>
<section>
<menu>
<h2>Major Services</h2>
<ul>
<li><a href="//drive.woozle.org/">📁 Drive</a></li>
<li><a href="//ancestry.woozle.org/">👪 Ancestry</a></li>
<li><a href="//git.woozle.org/">🗄️ Git</a></li>
</ul>
<h2>Smaller stuff</h2>
<ul>
<li><a href="/octoprint/">🖨️ Octoprint: 3d Printer</a></li>
<li><a href="/wallart/">🖼️ Wall Art Uploader</a></li>
</ul>
<h2>Media</h2>
<ul>
<li><a href="/sucker/">💿 Media Sucker: DVD/CD ripper</a></li>
<li><a href="/sonarr/">📺 Sonarr: TV episode manager</a></li>
<li><a href="/jackett/">🧥 Jackett: Tracker RSS proxy</a></li>
<li><a href="/transmission/web/">📥 Transmission: BitTorrent</a></li>
<li><a href="/nzbget/">📰 NZBGet: Usenet fetcher</a></li>
</ul>
</menu>
</section>
<section>
<h1>How all the media stuff fits together</h1>
<p>
Plex is the main interface for users.
It indexes media in <tt>/srv/ext/media</tt>
and lets everybody watch it whetever.
</p>
<p>
Sonarr lets you tell it what you'd like to have,
and watches various feeds,
waiting for it to appear.
Then it tells a downloader to download it.
Once a file is downloaded,
it moves it into a directory where Plex can see it,
making sure it's named properly.
</p>
<p>
Jackett is a feed provider,
which searches torrent sites and provides the results as feeds.
<a href="https://nzbgeek.info/">NZBGeek</a> is a paid feed provider that I use:
it monitors usenet for new posts,
and provides them as feeds.
Usenet is a very old distributed bulletin board: it even predates the World Wide Web.
I pay <a href="https://frugalusenet.com/">Frugal Usenet</a> $5 a month to run a Usenet server so I don't have to.
</p>
<p>
Transmission and NZBGet are downloaders.
They pull files down from bit torrent (Transmission)
and Usenet (NZBGet).
</p>
</section>
</body>
</html>
<!--
vi: ts=2 sw=2 et ai
-->