services.dependency-track.frontend.baseUrl

NixOS option

The base URL of the API server. NOTE: This URL must be reachable by the browsers of your users. The frontend container itself does NOT communicate with the API server directly, it just serves static files. When deploying to dedicated servers, please use the external IP or domain of the API server.

type: string
Default
lib.optionalString config.services.dependency-track.nginx.enable "${
  if sslEnabled then "https" else "http"
}://${config.services.dependency-track.nginx.domain}";
declared in: nixos/modules/services/web-apps/dependency-track.nixView source on NixOS/nixpkgs →