nixos/kanidm: bind ca-bundle to validate url on provisioning (#409184)
This commit is contained in:
commit
02e4fa0530
@ -888,7 +888,14 @@ in
|
||||
(
|
||||
defaultServiceConfig
|
||||
// {
|
||||
BindReadOnlyPaths = mergePaths (defaultServiceConfig.BindReadOnlyPaths ++ secretPaths);
|
||||
BindReadOnlyPaths = mergePaths (
|
||||
defaultServiceConfig.BindReadOnlyPaths
|
||||
++ secretPaths
|
||||
++ (lib.optionals (cfg.provision.enable && !cfg.provision.acceptInvalidCerts) [
|
||||
"-/etc/ssl"
|
||||
"-/etc/static/ssl"
|
||||
])
|
||||
);
|
||||
}
|
||||
)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user