Fixed bad path for Traefik configuration files.
This commit is contained in:
@@ -142,12 +142,14 @@ helper.mkPodmanService {
|
||||
enable.default = true;
|
||||
traefikStaticConfigDir = mkOption {
|
||||
type = types.str;
|
||||
default = "/traefik";
|
||||
description = "The path of the directory containing Traefik's static configuration file, appended to /etc (i.e. to get /etc/traefik as final path, enter /traefik)";
|
||||
default = "traefik";
|
||||
example = "traefik";
|
||||
description = "The path of the directory containing Traefik's static configuration file, appended to /etc/ (i.e. to get /etc/traefik as final path, enter traefik)";
|
||||
};
|
||||
logLevel = mkOption {
|
||||
type = types.enum [ "TRACE" "DEBUG" "INFO" "WARN" "ERROR" "FATAL" ];
|
||||
default = "ERROR";
|
||||
example = "ERROR";
|
||||
description = "The level of detail Traefik should print in the logs.";
|
||||
};
|
||||
# traefikDynamicConfigDir defined at global.nix
|
||||
|
||||
Reference in New Issue
Block a user