homelab/compose/services/FreshRSS/compose.yaml
Eduardo Figueroa bd9a55f293 fix(freshrss): Remove SSO and configure for API access
Remove Tinyauth SSO middleware and configure Traefik for FreshRSS API
compatibility with mobile apps.

Changes:
- Removed tinyauth middleware (conflicts with API authentication)
- Added passhostheader directive for proper request routing
- FreshRSS now uses built-in authentication only

This enables iOS RSS apps (Reeder, NetNewsWire, etc.) to connect via
FreshRSS's Google Reader and Fever APIs.
2025-12-04 18:44:40 +00:00

41 lines
1 KiB
YAML

# FreshRSS - Self-hosted RSS feed aggregator
# Docs: https://docs.linuxserver.io/images/docker-freshrss/
services:
freshrss:
container_name: freshrss
image: lscr.io/linuxserver/freshrss:latest
restart: unless-stopped
env_file:
- .env
volumes:
- ./config:/config
networks:
- homelab
labels:
# Traefik
traefik.enable: true
traefik.docker.network: homelab
# Web UI
traefik.http.routers.freshrss.rule: Host(`feeds.fig.systems`)
traefik.http.routers.freshrss.entrypoints: websecure
traefik.http.routers.freshrss.tls.certresolver: letsencrypt
traefik.http.services.freshrss.loadbalancer.server.port: 80
traefik.http.services.freshrss.loadbalancer.passhostheader: true
# SSO Protection removed - using FreshRSS built-in auth
# traefik.http.routers.freshrss.middlewares: tinyauth
# Homarr Discovery
homarr.name: FreshRSS
homarr.group: Services
homarr.icon: mdi:rss
networks:
homelab:
external: true