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
|
|
@ -61,6 +61,7 @@ LAN URLs (UFW allows **`192.168.8.0/24`**). Replace host if needed.
|
|||
|
||||
| Service | URL |
|
||||
|---------|-----|
|
||||
| **Landing page** | http://192.168.8.123/ |
|
||||
| Jellyfin | http://192.168.8.123:8096 |
|
||||
| qBittorrent | http://192.168.8.123:8080 |
|
||||
| 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*).
|
||||
|
||||
**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.
|
||||
Prowlarr → **Settings → Indexers** (or **Settings → Connect** / FlareSolverr section depending on version) → add FlareSolverr host:
|
||||
|
||||
- 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.
|
||||
Prowlarr → **Settings → Indexers** → FlareSolverr host: `http://flaresolverr:8191`.
|
||||
|
||||
**Bazarr** — Sonarr/Radarr URLs + API keys; paths `/data/media/tv`, `/data/media/movies`.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue