Compare commits

...

3 Commits

Author SHA1 Message Date
Neale Pickett aa3f31af03 remove unused index 2022-10-16 23:12:10 -06:00
Neale Pickett c3f27b7451 New homepage 2022-10-16 23:11:59 -06:00
Neale Pickett 955f1d0f16 fix transmission url 2022-10-13 18:48:47 -06:00
2 changed files with 5 additions and 103 deletions

View File

@ -17,11 +17,13 @@ services:
- type: bind
source: /srv/ext/sys/caddy
target: /data/caddy
- type: bind
source: /srv/ext/sys/www
target: /www
read_only: true
configs:
- source: Caddyfile
target: /etc/caddy/Caddyfile
- source: index.html
target: /www/index.html
extra_hosts:
- host.docker.internal:host-gateway
@ -219,10 +221,7 @@ configs:
name: dave.yaml-v3
Caddyfile:
file: Caddyfile
name: Caddyfile-v55
index.html:
file: index.html
name: index.html-v30
name: Caddyfile-v57
secrets:

View File

@ -1,97 +0,0 @@
<!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="/radarr/">🎬 Radarr: Movie manager</a></li>
<li><a href="/lidarr/">🎶 Lidarr: Music manager</a></li>
<li><a href="/readarr/">📖 Readarr: Book manager</a></li>
</ul>
<h2>Media Helpers</h2>
<ul>
<li><a href="/prowlarr/">🐯 Prowlarr: Indexer for downloaders</a></li>
<li><a href="/transmission/">📥 Transmission</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>
The Media Sucker automatically sucks things off of CDs and DVDs.
You still have to rename the files and move them into the right place, though.
</p>
<p>
Sonarr/Radarr/Lidarr/Readarr let 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>
Prowlarr connects to various download indexers,
to find whatever it is you're looking for.
<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.
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.
Once you've found something in an index,
you can ask these to download it.
</p>
</section>
</body>
</html>
<!--
vi: ts=2 sw=2 et ai
-->