added miniflux

This commit is contained in:
dado
2026-01-24 15:50:33 +01:00
parent 95b75e98b2
commit 76fd0ecdc9
4 changed files with 58 additions and 7 deletions

View File

@@ -43,8 +43,8 @@
- title: 4get - title: 4get
url: https://search.novemila.org url: https://search.novemila.org
icon: si:searxng icon: si:searxng
- title: Fresh RSS - title: Miniflux
url: https://rss.novemila.org url: https://feed.novemila.org
icon: si:rss icon: si:rss
- title: Gitea - title: Gitea
url: https://git.novemila.org url: https://git.novemila.org

View File

@@ -75,11 +75,11 @@ https://ntfy.novemila.org {
# RSS # RSS
https://rss.novemila.org { # https://rss.novemila.org {
import common # import common
encode gzip zstd # encode gzip zstd
reverse_proxy localhost:3004 # reverse_proxy localhost:3004
} # }
# COLLABORA # COLLABORA
@@ -212,6 +212,15 @@ https://memos.novemila.org {
reverse_proxy localhost:3024 reverse_proxy localhost:3024
} }
# MINIFLUX
https://feed.novemila.org {
import common
encode gzip zstd
reverse_proxy localhost:3025
}
# MOLLY # MOLLY
https://molly.novemila.org { https://molly.novemila.org {

4
miniflux/.env Normal file
View File

@@ -0,0 +1,4 @@
ADMIN_USERNAME=""
ADMIN_PASSWORD=""
POSTGRES_USER=""
POSTGRES_PASSWORD=""

View File

@@ -0,0 +1,38 @@
services:
miniflux:
image: miniflux/miniflux:latest
mem_limit: 256m
healthcheck:
test: ["CMD", "/usr/bin/miniflux", "-healthcheck", "auto"]
ports:
- "127.0.0.1:3025:8080"
depends_on:
db:
condition: service_healthy
environment:
- DATABASE_URL=postgres://miniflux:${POSTGRES_PASSWORD}@db/miniflux?sslmode=disable
- RUN_MIGRATIONS=1
- BASE_URL=https://feed.novemila.org
- ICON_FETCH_ALLOW_PRIVATE_NETWORKS=1
# - CREATE_ADMIN=1
# - ADMIN_USERNAME=${ADMIN_USERNAME}
# - ADMIN_PASSWORD=${ADMIN_PASSWORD}
db:
image: postgres:18
mem_limit: 256m
environment:
- POSTGRES_USER=miniflux
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=miniflux
volumes:
- miniflux-db:/var/lib/postgresql
healthcheck:
test: ["CMD", "pg_isready", "-U", "miniflux"]
interval: 10s
start_period: 30s
volumes:
miniflux-db:
# https://miniflux.app/docs/docker.html
# https://miniflux.app/docs/configuration.html#base-url
# CREATE_ADMIN, ADMIN_USERNAME, and ADMIN_PASSWORD allow the creation of the first admin user. These can be removed after the first initialization