services.traefik.staticConfigOptions

NixOS option

Static configuration for Traefik.

type: TOML value
Default
{
  entryPoints = {
    http = {
      address = ":80";
    };
  };
}
Example
{
  api = { };
  entryPoints = {
    http = {
      address = ":80";
    };
    web = {
      address = ":8080";
    };
  };
}
declared in: nixos/modules/services/web-servers/traefik.nixView source on NixOS/nixpkgs →