services.traefik.staticConfigOptions
NixOS option
Static configuration for Traefik.
type: TOML valueDefault
{
entryPoints = {
http = {
address = ":80";
};
};
}Example
declared in: nixos/modules/services/web-servers/traefik.nixView source on NixOS/nixpkgs →{
api = { };
entryPoints = {
http = {
address = ":80";
};
web = {
address = ":8080";
};
};
}