Added boilerplate for lldap and handle wildcard certificates for tbmrs.nl

This commit is contained in:
2025-04-26 12:23:41 +02:00
parent 8dbddaf62d
commit af39ac1be4
5 changed files with 79 additions and 10 deletions

View File

@@ -0,0 +1,24 @@
{ config, lib, ... }:
with lib;
let
cfg = config.settings.containers.nginx;
in {
options = {
settings.containers.network.enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Enable network
'';
};
};
config = mkIf cfg.enable {
services.podman.networks.proxy = {
description = "Container network for the proxy";
autoStart = true;
};
};
}