+outine, flake update

This commit is contained in:
Sascha Koenig
2025-07-10 06:54:42 +02:00
parent b54213cfbb
commit 55e8c6cae5
7 changed files with 31 additions and 3 deletions

View File

@ -0,0 +1,24 @@
{
services.outline = {
port = 3019;
databaseUrl = "postgresql://outline:outline@127.0.0.1:5432/outline";
storage = "local";
};
# Traefik configuration specific to littlelink
services.traefik.dynamicConfigOptions.http = {
services.outline.loadBalancer.servers = [
{
url = "http://localhost:3019/";
}
];
routers.outline = {
rule = "Host(`ol.m3ta.dev`)";
tls = {
certResolver = "godaddy";
};
service = "outline";
entrypoints = "websecure";
};
};
}