Compare commits

..

6 Commits

Author SHA1 Message Date
dado
6ca523fadb restart policy 2026-02-02 22:25:47 +01:00
dado
4f096b47b0 set cpu limit to 0.5 2026-01-29 20:52:32 +01:00
dado
64d6b1aa42 sysctl.conf 2026-01-24 16:38:17 +01:00
dado
76fd0ecdc9 added miniflux 2026-01-24 15:50:33 +01:00
dado
95b75e98b2 added memos and removed grocy 2025-12-13 17:50:21 +01:00
dado
b2a20eef8a added grocy 2025-12-13 14:53:33 +01:00
9 changed files with 104 additions and 12 deletions

View File

@@ -43,8 +43,8 @@
- title: 4get
url: https://search.novemila.org
icon: si:searxng
- title: Fresh RSS
url: https://rss.novemila.org
- title: Miniflux
url: https://feed.novemila.org
icon: si:rss
- title: Gitea
url: https://git.novemila.org
@@ -61,6 +61,9 @@
- title: Mailcow
url: https://mail.novemila.org/
icon: si:maildotru
- title: Memos
url: https://memos.novemila.org/
icon: si:todoist
- title: Mollysocket
url: https://molly.novemila.org
icon: si:signal

View File

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

View File

@@ -0,0 +1,22 @@
net.ipv4.ip_forward=1
net.ipv6.conf.all.disable_ipv6 = 1
#net.ipv4.tcp_congestion_control=bbr
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=hybla
fs.file-max=51200
net.core.netdev_max_backlog=250000
net.core.rmem_max=67108864
net.core.somaxconn=4096
net.core.wmem_max=67108864
net.ipv4.ip_local_port_range=10000 65000
net.ipv4.tcp_fastopen=3
net.ipv4.tcp_fin_timeout=30
net.ipv4.tcp_keepalive_time=1200
net.ipv4.tcp_max_syn_backlog=8192
net.ipv4.tcp_max_tw_buckets=5000
net.ipv4.tcp_mem=25600 51200 102400
net.ipv4.tcp_mtu_probing=1
net.ipv4.tcp_rmem=4096 87380 67108864
net.ipv4.tcp_syncookies=1
net.ipv4.tcp_tw_reuse=1
net.ipv4.tcp_wmem=4096 65536 67108864

View File

@@ -0,0 +1 @@
vm.overcommit_memory=1

View File

@@ -0,0 +1,2 @@
net.core.rmem_max=7500000
net.core.wmem_max=7500000

View File

@@ -33,7 +33,7 @@ services:
# file: hwaccel.ml.yml
# service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
mem_limit: 1.5g
cpus: 0.3
cpus: 0.5
volumes:
- model-cache:/cache
env_file:

View File

@@ -1,10 +1,13 @@
services:
memos:
image: neosmemo/memos:stable
mem_limit: 100m
container_name: memos
restart: unless-stopped
mem_limit: 1g
volumes:
- .memos/:/var/opt/memos
- ./memos:/var/opt/memos
ports:
- 127.0.0.1:3009:5230
- 127.0.0.1:3024:5230
environment:
- MEMOS_MODE=prod
- MEMOS_DATA=/var/opt/memos
restart: unless-stopped

4
miniflux/.env Normal file
View File

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

View File

@@ -0,0 +1,40 @@
services:
miniflux:
image: miniflux/miniflux:latest
restart: unless-stopped
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
restart: unless-stopped
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