MyNixOS website logo
option

services.traccar.settings

config.xml configuration as a Nix attribute set. Attribute names are translated from camelCase to dot-separated strings. For instance: mailSmtpPort = "25" would result in the following configuration property: <entry key='mail.smtp.port'>25</entry> Configuration options should match those described in Traccar - Configuration File. Secret tokens should be specified using environmentFile instead of this world-readable attribute set.

Declarations
Type
unspecified value
Default
{
  databaseDriver = "org.h2.Driver";
  databasePassword = "";
  databaseUrl = "jdbc:h2:/var/lib/traccar/traccar";
  databaseUser = "sa";
  loggerConsole = "true";
  mediaPath = "/var/lib/traccar/media";
  templatesRoot = "/var/lib/traccar/templates";
}