add linkding

This commit is contained in:
Tasia Iso 2025-02-09 09:10:18 +01:00
parent 265e1eebb4
commit 814121cb4c
Signed by: tasiaiso
SSH key fingerprint: SHA256:KiRjUay5C9i6objsEOIycygBHn54pDBB3Lj7fyJ0Elw
2 changed files with 10 additions and 0 deletions

View file

@ -16,6 +16,7 @@ in {
./wallabag.nix ./wallabag.nix
./nextcloud.nix ./nextcloud.nix
./vaultwarden.nix ./vaultwarden.nix
./linkding.nix
# ./thymis.nix # ./thymis.nix
]; ];

View file

@ -0,0 +1,9 @@
{config, ...}: {
services.nginx.virtualHosts."linkding.vulpecula.zone" = {
addSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:62108";
};
# linkding is managed through docker.
}