Remove Tinyauth SSO middleware references from: - FreshRSS, Backrest, Booklore, Code Server - Homarr, Homepage, Karakeep, Komodo - MicroBin, RSS Bridge, RSSHub, Static Sites Services with local-only middleware now only use local-only restriction (Backrest, Code Server) without Tinyauth.
40 lines
984 B
YAML
40 lines
984 B
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
|
|
|
|
# Homarr Discovery
|
|
homarr.name: FreshRSS
|
|
homarr.group: Services
|
|
homarr.icon: mdi:rss
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|