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.
33 lines
891 B
YAML
33 lines
891 B
YAML
# RSS-Bridge - RSS feed for websites without one
|
|
# Docs: https://rss-bridge.github.io/rss-bridge/
|
|
|
|
services:
|
|
rss-bridge:
|
|
container_name: rss-bridge
|
|
image: rssbridge/rss-bridge:latest
|
|
volumes:
|
|
- ./config:/config
|
|
restart: unless-stopped
|
|
networks:
|
|
- homelab
|
|
labels:
|
|
# Traefik
|
|
traefik.enable: true
|
|
traefik.docker.network: homelab
|
|
|
|
# Web UI
|
|
traefik.http.routers.rss-bridge.rule: Host(`rss.fig.systems`)
|
|
traefik.http.routers.rss-bridge.entrypoints: websecure
|
|
traefik.http.routers.rss-bridge.tls.certresolver: letsencrypt
|
|
traefik.http.services.rss-bridge.loadbalancer.server.port: 80
|
|
|
|
# SSO Protection (disabled so feeds can be accessed by RSS readers)
|
|
|
|
# Homarr Discovery
|
|
homarr.name: RSS Bridge
|
|
homarr.group: Services
|
|
homarr.icon: mdi:rss
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|