Add Caddy landing page with dark LAN service map
Newbie-friendly index of media, download, AI, and git services with short how-to blurbs; served on port 80 for other PCs on the network.
This commit is contained in:
parent
ceba76df85
commit
56ddb349b4
7 changed files with 478 additions and 6 deletions
|
|
@ -76,6 +76,9 @@ FLARESOLVERR_CAPTCHA_SOLVER=none
|
||||||
# SABnzbd (Usenet) — credentials in secrets/.env, not here
|
# SABnzbd (Usenet) — credentials in secrets/.env, not here
|
||||||
SABNZBD_PORT=8085
|
SABNZBD_PORT=8085
|
||||||
|
|
||||||
|
# Caddy landing page (LAN service map)
|
||||||
|
LANDING_PORT=80
|
||||||
|
|
||||||
# Forgejo — self-hosted Git (web + SSH clone)
|
# Forgejo — self-hosted Git (web + SSH clone)
|
||||||
FORGEJO_HTTP_PORT=3002
|
FORGEJO_HTTP_PORT=3002
|
||||||
FORGEJO_SSH_PORT=2222
|
FORGEJO_SSH_PORT=2222
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ for the **Beelink SER5 PRO** (Ryzen 7 7735HS + Radeon 680M).
|
||||||
|
|
||||||
| Service | URL | Purpose |
|
| Service | URL | Purpose |
|
||||||
|-------------|------------------------|--------------------------------------|
|
|-------------|------------------------|--------------------------------------|
|
||||||
|
| **Landing** | http://host/ | Dark map of all LAN services (Caddy) |
|
||||||
| Jellyfin | http://host:8096 | Media server / playback |
|
| Jellyfin | http://host:8096 | Media server / playback |
|
||||||
| qBittorrent | http://host:8080 | Torrent client (VPN-only) |
|
| qBittorrent | http://host:8080 | Torrent client (VPN-only) |
|
||||||
| Prowlarr | http://host:9696 | Indexer manager |
|
| Prowlarr | http://host:9696 | Indexer manager |
|
||||||
|
|
|
||||||
|
|
@ -173,6 +173,7 @@ ufw_allow_ssh_from_anywhere: false
|
||||||
|
|
||||||
ufw_lan_tcp_ports:
|
ufw_lan_tcp_ports:
|
||||||
- { port: 22, comment: "SSH" }
|
- { port: 22, comment: "SSH" }
|
||||||
|
- { port: 80, comment: "Landing (Caddy)" }
|
||||||
- { port: 8080, comment: "qBittorrent" }
|
- { port: 8080, comment: "qBittorrent" }
|
||||||
- { port: 8096, comment: "Jellyfin" }
|
- { port: 8096, comment: "Jellyfin" }
|
||||||
- { port: 8989, comment: "Sonarr" }
|
- { port: 8989, comment: "Sonarr" }
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ name: arr-stack
|
||||||
# sabnzbd Usenet NZB download client (Newshosting, Tweaknews, …)
|
# sabnzbd Usenet NZB download client (Newshosting, Tweaknews, …)
|
||||||
# sonarr TV radarr movies bazarr subtitles
|
# sonarr TV radarr movies bazarr subtitles
|
||||||
# jellyfin media server
|
# jellyfin media server
|
||||||
|
# landing Caddy — dark LAN homepage (port 80)
|
||||||
#
|
#
|
||||||
# AI / coding stack (local, no VPN)
|
# AI / coding stack (local, no VPN)
|
||||||
# bonsai Prism Ternary-Bonsai-27B via llama-server (OpenAI-compatible API)
|
# bonsai Prism Ternary-Bonsai-27B via llama-server (OpenAI-compatible API)
|
||||||
|
|
@ -186,6 +187,19 @@ services:
|
||||||
# devices:
|
# devices:
|
||||||
# - /dev/dri:/dev/dri
|
# - /dev/dri:/dev/dri
|
||||||
|
|
||||||
|
# ----------------------------------------------------- LAN landing (Caddy) #
|
||||||
|
# Dark-mode map of services for other PCs on the network: http://server/
|
||||||
|
landing:
|
||||||
|
image: caddy:2-alpine
|
||||||
|
container_name: landing
|
||||||
|
restart: unless-stopped
|
||||||
|
networks: [arr-net]
|
||||||
|
ports:
|
||||||
|
- "${LANDING_PORT:-80}:80"
|
||||||
|
volumes:
|
||||||
|
- ./landing/Caddyfile:/etc/caddy/Caddyfile:ro
|
||||||
|
- ./landing/site:/srv:ro
|
||||||
|
|
||||||
# ------------------------------------------------------------------- music #
|
# ------------------------------------------------------------------- music #
|
||||||
lidarr:
|
lidarr:
|
||||||
image: lscr.io/linuxserver/lidarr:latest
|
image: lscr.io/linuxserver/lidarr:latest
|
||||||
|
|
|
||||||
7
landing/Caddyfile
Normal file
7
landing/Caddyfile
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Homelab landing page — LAN only (UFW allows 80 from LAN)
|
||||||
|
:80 {
|
||||||
|
root * /srv
|
||||||
|
encode gzip
|
||||||
|
file_server
|
||||||
|
try_files {path} /index.html
|
||||||
|
}
|
||||||
428
landing/site/index.html
Normal file
428
landing/site/index.html
Normal file
|
|
@ -0,0 +1,428 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<title>Homelab · Resource map</title>
|
||||||
|
<meta name="color-scheme" content="dark" />
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--bg: #0c0e12;
|
||||||
|
--bg-elev: #141820;
|
||||||
|
--bg-card: #1a1f2a;
|
||||||
|
--bg-card-hover: #222936;
|
||||||
|
--border: #2a3344;
|
||||||
|
--text: #e8ecf4;
|
||||||
|
--muted: #8b95a8;
|
||||||
|
--dim: #5c667a;
|
||||||
|
--accent: #6ea8fe;
|
||||||
|
--accent-soft: rgba(110, 168, 254, 0.12);
|
||||||
|
--media: #7dd3a0;
|
||||||
|
--download: #f0b429;
|
||||||
|
--ai: #c4a1ff;
|
||||||
|
--code: #5eead4;
|
||||||
|
--radius: 14px;
|
||||||
|
--font: "Segoe UI", system-ui, -apple-system, sans-serif;
|
||||||
|
--mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: var(--font);
|
||||||
|
background: var(--bg);
|
||||||
|
color: var(--text);
|
||||||
|
min-height: 100vh;
|
||||||
|
line-height: 1.5;
|
||||||
|
background-image:
|
||||||
|
radial-gradient(ellipse 80% 50% at 50% -20%, rgba(110, 168, 254, 0.12), transparent),
|
||||||
|
radial-gradient(ellipse 60% 40% at 100% 100%, rgba(196, 161, 255, 0.06), transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrap {
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 2rem 1.25rem 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
border-bottom: 1px solid var(--border);
|
||||||
|
padding-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h1 {
|
||||||
|
font-size: 1.65rem;
|
||||||
|
font-weight: 650;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
}
|
||||||
|
|
||||||
|
header p {
|
||||||
|
color: var(--muted);
|
||||||
|
margin-top: 0.4rem;
|
||||||
|
max-width: 42rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.host-pill {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.4rem;
|
||||||
|
margin-top: 0.85rem;
|
||||||
|
padding: 0.35rem 0.75rem;
|
||||||
|
background: var(--bg-elev);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-radius: 999px;
|
||||||
|
font-family: var(--mono);
|
||||||
|
font-size: 0.85rem;
|
||||||
|
color: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.host-pill span { color: var(--dim); }
|
||||||
|
|
||||||
|
/* Visual map lanes */
|
||||||
|
.map {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lane {
|
||||||
|
background: var(--bg-elev);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-radius: calc(var(--radius) + 4px);
|
||||||
|
padding: 1.15rem 1.15rem 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lane-head {
|
||||||
|
display: flex;
|
||||||
|
align-items: baseline;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 1rem;
|
||||||
|
margin-bottom: 0.9rem;
|
||||||
|
padding-bottom: 0.65rem;
|
||||||
|
border-bottom: 1px solid var(--border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.lane-head h2 {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.06em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lane-head h2 .dot {
|
||||||
|
display: inline-block;
|
||||||
|
width: 0.55rem;
|
||||||
|
height: 0.55rem;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 0.45rem;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lane.media h2 .dot { background: var(--media); box-shadow: 0 0 10px var(--media); }
|
||||||
|
.lane.download h2 .dot { background: var(--download); box-shadow: 0 0 10px var(--download); }
|
||||||
|
.lane.ai h2 .dot { background: var(--ai); box-shadow: 0 0 10px var(--ai); }
|
||||||
|
.lane.code h2 .dot { background: var(--code); box-shadow: 0 0 10px var(--code); }
|
||||||
|
|
||||||
|
.lane-head .hint {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: var(--dim);
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
|
||||||
|
gap: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.card {
|
||||||
|
display: block;
|
||||||
|
text-decoration: none;
|
||||||
|
color: inherit;
|
||||||
|
background: var(--bg-card);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-radius: var(--radius);
|
||||||
|
padding: 1rem 1.05rem;
|
||||||
|
transition: background 0.15s, border-color 0.15s, transform 0.15s;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.card:hover {
|
||||||
|
background: var(--bg-card-hover);
|
||||||
|
border-color: var(--accent);
|
||||||
|
transform: translateY(-1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
a.card:focus-visible {
|
||||||
|
outline: 2px solid var(--accent);
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-title {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 1.02rem;
|
||||||
|
margin-bottom: 0.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-what {
|
||||||
|
font-size: 0.88rem;
|
||||||
|
color: var(--muted);
|
||||||
|
margin-bottom: 0.55rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-url {
|
||||||
|
font-family: var(--mono);
|
||||||
|
font-size: 0.75rem;
|
||||||
|
color: var(--accent);
|
||||||
|
background: var(--accent-soft);
|
||||||
|
padding: 0.25rem 0.45rem;
|
||||||
|
border-radius: 6px;
|
||||||
|
display: inline-block;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-howto {
|
||||||
|
margin-top: 0.65rem;
|
||||||
|
padding-top: 0.55rem;
|
||||||
|
border-top: 1px dashed var(--border);
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: var(--dim);
|
||||||
|
}
|
||||||
|
|
||||||
|
.card.offline {
|
||||||
|
opacity: 0.55;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
section.guide {
|
||||||
|
margin-top: 2.5rem;
|
||||||
|
background: var(--bg-elev);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-radius: calc(var(--radius) + 4px);
|
||||||
|
padding: 1.35rem 1.4rem 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
section.guide h2 {
|
||||||
|
font-size: 1.15rem;
|
||||||
|
margin-bottom: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
section.guide ol {
|
||||||
|
padding-left: 1.25rem;
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
section.guide li { margin-bottom: 0.55rem; }
|
||||||
|
section.guide li strong { color: var(--text); }
|
||||||
|
section.guide code {
|
||||||
|
font-family: var(--mono);
|
||||||
|
font-size: 0.85em;
|
||||||
|
background: var(--bg-card);
|
||||||
|
padding: 0.1rem 0.35rem;
|
||||||
|
border-radius: 4px;
|
||||||
|
color: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
margin-top: 2rem;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
color: var(--dim);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 560px) {
|
||||||
|
.lane-head { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="wrap">
|
||||||
|
<header>
|
||||||
|
<h1>Homelab resource map</h1>
|
||||||
|
<p>
|
||||||
|
Everything below is available to PCs on this home network.
|
||||||
|
Click a card to open it. New here? Read the short guide at the bottom.
|
||||||
|
</p>
|
||||||
|
<div class="host-pill"><span>server</span> <strong id="host">…</strong></div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="map" id="map">
|
||||||
|
<!-- filled by JS so host IP stays correct on any LAN address -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section class="guide">
|
||||||
|
<h2>Quick start for humans</h2>
|
||||||
|
<ol>
|
||||||
|
<li><strong>Watch movies & shows</strong> — open <em>Jellyfin</em>. Create a user if asked. Libraries are already on the server.</li>
|
||||||
|
<li><strong>Request / automate media</strong> — use <em>Sonarr</em> (TV), <em>Radarr</em> (movies), <em>Lidarr</em> (music). They search via <em>Prowlarr</em> and download with torrents or Usenet.</li>
|
||||||
|
<li><strong>Downloads</strong> — <em>qBittorrent</em> is for torrents (goes through the VPN). <em>SABnzbd</em> is for Usenet/NZB files. You usually don’t open these unless something is stuck.</li>
|
||||||
|
<li><strong>Talk to the local AI</strong> — <em>Open WebUI</em> is the chat box. The model runs on this mini PC (private, no cloud).</li>
|
||||||
|
<li><strong>Code & git</strong> — <em>Forgejo</em> is our GitHub-like site. <em>OpenHands</em> is an AI coding agent (optional; start it if the link fails).</li>
|
||||||
|
<li><strong>Only on this Wi‑Fi / LAN</strong> — these links use the server’s local address. They won’t work from the mobile internet unless you set up remote access later.</li>
|
||||||
|
</ol>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
Served by Caddy · arr-stack · dark map for LAN browsers
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
(function () {
|
||||||
|
const host = location.hostname || "192.168.8.123";
|
||||||
|
document.getElementById("host").textContent = host;
|
||||||
|
|
||||||
|
const u = (port, path) =>
|
||||||
|
"http://" + host + ":" + port + (path || "");
|
||||||
|
|
||||||
|
const lanes = [
|
||||||
|
{
|
||||||
|
id: "media",
|
||||||
|
title: "Watch & enjoy",
|
||||||
|
hint: "Day-to-day media",
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
name: "Jellyfin",
|
||||||
|
what: "TV, movies & music player (like Netflix at home)",
|
||||||
|
port: 8096,
|
||||||
|
how: "Open → pick a library → play. Best starting point for family.",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "download",
|
||||||
|
title: "Find & download",
|
||||||
|
hint: "Automation + grabbers",
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
name: "Sonarr",
|
||||||
|
what: "TV show manager — finds and downloads episodes",
|
||||||
|
port: 8989,
|
||||||
|
how: "Add a series → it searches and grabs new episodes automatically.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Radarr",
|
||||||
|
what: "Movie manager — finds and downloads films",
|
||||||
|
port: 7878,
|
||||||
|
how: "Add a movie → it searches and downloads when available.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Lidarr",
|
||||||
|
what: "Music manager — albums & artists",
|
||||||
|
port: 8686,
|
||||||
|
how: "Add an artist/album → downloads to the music library.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Prowlarr",
|
||||||
|
what: "Search hub — talks to torrent/Usenet indexers",
|
||||||
|
port: 9696,
|
||||||
|
how: "Usually leave alone; Sonarr/Radarr use it under the hood.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Bazarr",
|
||||||
|
what: "Subtitles for TV & movies",
|
||||||
|
port: 6767,
|
||||||
|
how: "Fetches subs once Sonarr/Radarr have the files.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "qBittorrent",
|
||||||
|
what: "Torrent downloads (VPN-protected)",
|
||||||
|
port: 8080,
|
||||||
|
how: "Check the queue if a torrent is stuck. Login: admin (see server docs).",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "SABnzbd",
|
||||||
|
what: "Usenet / NZB downloads",
|
||||||
|
port: 8085,
|
||||||
|
how: "Queue for NZB jobs from Prowlarr/Sonarr. SSL to the provider.",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "ai",
|
||||||
|
title: "Local AI",
|
||||||
|
hint: "Runs on this mini PC",
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
name: "Open WebUI",
|
||||||
|
what: "Chat with the local AI (docs, questions, coding help)",
|
||||||
|
port: 3000,
|
||||||
|
how: "Create an account on first visit. Chat stays on your network.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Bonsai API",
|
||||||
|
what: "Raw AI API for apps (OpenAI-compatible)",
|
||||||
|
port: 8081,
|
||||||
|
path: "/v1",
|
||||||
|
how: "For developers: base URL ends with /v1. Not a chat UI.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "OpenHands",
|
||||||
|
what: "AI coding agent (optional service)",
|
||||||
|
port: 3001,
|
||||||
|
how: "If the page won’t load, start with: docker compose --profile coding up -d",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "code",
|
||||||
|
title: "Code & git",
|
||||||
|
hint: "Repos and projects",
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
name: "Forgejo",
|
||||||
|
what: "Git hosting — our private GitHub",
|
||||||
|
port: 3002,
|
||||||
|
how: "Sign in → browse repos (e.g. tim/stack). Clone over HTTP or SSH port 2222.",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const map = document.getElementById("map");
|
||||||
|
map.innerHTML = lanes
|
||||||
|
.map((lane) => {
|
||||||
|
const cards = lane.items
|
||||||
|
.map((item) => {
|
||||||
|
const href = u(item.port, item.path || "");
|
||||||
|
const pathLabel = item.path ? item.path : "";
|
||||||
|
return (
|
||||||
|
'<a class="card" href="' +
|
||||||
|
href +
|
||||||
|
'" target="_blank" rel="noopener">' +
|
||||||
|
'<div class="card-title">' +
|
||||||
|
item.name +
|
||||||
|
"</div>" +
|
||||||
|
'<div class="card-what">' +
|
||||||
|
item.what +
|
||||||
|
"</div>" +
|
||||||
|
'<span class="card-url">:' +
|
||||||
|
item.port +
|
||||||
|
pathLabel +
|
||||||
|
"</span>" +
|
||||||
|
'<div class="card-howto">' +
|
||||||
|
item.how +
|
||||||
|
"</div>" +
|
||||||
|
"</a>"
|
||||||
|
);
|
||||||
|
})
|
||||||
|
.join("");
|
||||||
|
return (
|
||||||
|
'<section class="lane ' +
|
||||||
|
lane.id +
|
||||||
|
'">' +
|
||||||
|
'<div class="lane-head"><h2><span class="dot"></span>' +
|
||||||
|
lane.title +
|
||||||
|
'</h2><span class="hint">' +
|
||||||
|
lane.hint +
|
||||||
|
"</span></div>" +
|
||||||
|
'<div class="grid">' +
|
||||||
|
cards +
|
||||||
|
"</div></section>"
|
||||||
|
);
|
||||||
|
})
|
||||||
|
.join("");
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -61,6 +61,7 @@ LAN URLs (UFW allows **`192.168.8.0/24`**). Replace host if needed.
|
||||||
|
|
||||||
| Service | URL |
|
| Service | URL |
|
||||||
|---------|-----|
|
|---------|-----|
|
||||||
|
| **Landing page** | http://192.168.8.123/ |
|
||||||
| Jellyfin | http://192.168.8.123:8096 |
|
| Jellyfin | http://192.168.8.123:8096 |
|
||||||
| qBittorrent | http://192.168.8.123:8080 |
|
| qBittorrent | http://192.168.8.123:8080 |
|
||||||
| Prowlarr | http://192.168.8.123:9696 |
|
| Prowlarr | http://192.168.8.123:9696 |
|
||||||
|
|
@ -111,13 +112,30 @@ Root folders: `/data/media/tv`, `/data/media/movies`, `/data/media/music` (hardl
|
||||||
|
|
||||||
**Prowlarr** — Add indexers. Apps: Sonarr `http://sonarr:8989`, Radarr `http://radarr:7878`, Lidarr `http://lidarr:8686` + each API key (*Settings → General*).
|
**Prowlarr** — Add indexers. Apps: Sonarr `http://sonarr:8989`, Radarr `http://radarr:7878`, Lidarr `http://lidarr:8686` + each API key (*Settings → General*).
|
||||||
|
|
||||||
|
**Usenet (NZBgeek + Newshosting + Tweaknews)**
|
||||||
|
Credentials live in **`secrets/.env`** (not git). Example keys: see `secrets/.env.example`.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# on ser5
|
||||||
|
cd /opt/stack && git pull
|
||||||
|
mkdir -p /storage/usenet/{incomplete,complete/{movies,tv,music}}
|
||||||
|
# copy secrets if needed: scp secrets/.env tim@stack:/opt/stack/secrets/
|
||||||
|
docker compose up -d sabnzbd
|
||||||
|
# open http://192.168.8.123:8085 once if first-run wizard appears, then:
|
||||||
|
./scripts/configure-usenet.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
1. **SABnzbd** (http://host:8085) — Config → Servers: Newshosting `news.newshosting.com:563` SSL; Tweaknews `news.tweaknews.eu:563` SSL. Test both green.
|
||||||
|
Folders: incomplete `/data/usenet/incomplete`, complete `/data/usenet/complete` (categories `movies`/`tv`/`music`).
|
||||||
|
2. **Prowlarr** → Indexers → **NZBgeek** → API key from secrets (`NZBKEEPKEY` / `NZBGEEK_API_KEY`).
|
||||||
|
Download Clients → **SABnzbd** → host `sabnzbd`, port `8080`, API key from SABnzbd Config → General.
|
||||||
|
Sync download client to apps (or add SABnzbd in each *arr).
|
||||||
|
3. **Sonarr/Radarr/Lidarr** → Download Clients → SABnzbd: host `sabnzbd`, port `8080`, categories `tv` / `movies` / `music`.
|
||||||
|
|
||||||
|
Usenet traffic is **not** forced through gluetun (SSL to provider). Torrents still go via VPN.
|
||||||
|
|
||||||
**FlareSolverr** (Cloudflare / JS challenges for some indexers) — container `flaresolverr` on `arr-net`, no public port by default.
|
**FlareSolverr** (Cloudflare / JS challenges for some indexers) — container `flaresolverr` on `arr-net`, no public port by default.
|
||||||
Prowlarr → **Settings → Indexers** (or **Settings → Connect** / FlareSolverr section depending on version) → add FlareSolverr host:
|
Prowlarr → **Settings → Indexers** → FlareSolverr host: `http://flaresolverr:8191`.
|
||||||
|
|
||||||
- Host: `http://flaresolverr:8191`
|
|
||||||
- Then enable FlareSolverr on indexers that show Cloudflare errors.
|
|
||||||
|
|
||||||
Does **not** solve every captcha (Turnstile/hCaptcha image puzzles, etc.). Prefer indexers without CF; paid APIs (2captcha / CapSolver) are optional external services, not a free self-hosted magic box.
|
|
||||||
|
|
||||||
**Bazarr** — Sonarr/Radarr URLs + API keys; paths `/data/media/tv`, `/data/media/movies`.
|
**Bazarr** — Sonarr/Radarr URLs + API keys; paths `/data/media/tv`, `/data/media/movies`.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue