eleakxir: init

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2025-09-16 13:38:40 +02:00
parent 198e88682c
commit 76a97d964f
4 changed files with 207 additions and 46 deletions

View File

@@ -0,0 +1,18 @@
{config, ...}: {
services.eleakxir = {
enable = true;
port = 9198;
folders = ["/var/lib/eleakxir/leaks/"];
debug = true;
};
nginx.virtualHosts."eleakxir.hadi.diy" = {
useACMEHost = "hadi.diy";
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${
toString config.services.eleakxir.port
}";
};
};
}