murmur + hedgedoc

This commit is contained in:
tristan 2025-05-25 15:39:04 -04:00
parent 55eb4f5ddc
commit 9da5443958
6 changed files with 41 additions and 5 deletions

View file

@ -3,9 +3,23 @@
services.hedgedoc = {
enable = true;
settings = {
domain = "hedgedoc.mymarseille.duckdns.org";
domain = "notes.mymarseille.duckdns.org";
port = 8001;
dbURL = "postgresql://localhost:5432/hedgedoc";
allowAnonymous = false;
allowAnonymousEdits = true;
sessionSecret = "IRpdLVn5z45C7IVhcYkqCd4yrtd21BlasMMEvvLkiF6xBaL1BTUQzqeDg5rA2q9X";
};
};
systemd.services.hedgedoc = {
requires = [ "postgresql.service" ];
after = [ "postgresql.service" ];
};
}