remove tiddlywiki

This commit is contained in:
Fabian Montero 2024-08-23 16:55:42 -06:00
parent 22e27f87b0
commit 1df5fa155d
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
2 changed files with 0 additions and 34 deletions

View file

@ -9,7 +9,6 @@
./bepasty.nix
./jellyfin.nix
./msmtp.nix
./tiddlywiki.nix
./kuma.nix
];
}

View file

@ -1,33 +0,0 @@
{ lib, pkgs, ... }:
with lib;
{
systemd.services.tiddlywiki.serviceConfig.LoadCredential = [ "credentials.csv:/var/trust/tiddlywiki/credentials.csv" ];
services = {
nginx = {
virtualHosts."testing.posixlycorrect.com" = {
enableACME = true;
forceSSL = true;
extraConfig = ''
proxy_headers_hash_max_size 512;
proxy_headers_hash_bucket_size 128;
'';
locations."/" = {
proxyPass = "http://127.0.0.1:7456";
};
};
};
tiddlywiki = {
enable = true;
listenOptions = {
readers = "(anon)";
writers = "(authenticated)";
admin = "fabian";
credentials = "/run/credentials/tiddlywiki.service/credentials.csv";
host = "127.0.0.1";
port = 7456;
};
};
};
}