MyNixOS website logo
option

services.glitchtip.settings

Configuration of GlitchTip. See https://glitchtip.com/documentation/install#configuration for more information.

Declarations
Type
attribute set of (string or signed integer or boolean)
Default
{
  DEBUG = 0;
  DEBUG_TOOLBAR = 0;
  DATABASE_URL = lib.mkIf config.services.glitchtip.database.createLocally "postgresql://@/glitchtip";
  REDIS_URL = lib.mkIf config.services.glitchtip.redis.createLocally "unix://${config.services.redis.servers.glitchtip.unixSocket}";
  CELERY_BROKER_URL = lib.mkIf config.services.glitchtip.redis.createLocally "redis+socket://${config.services.redis.servers.glitchtip.unixSocket}";
}
Example
{
  DATABASE_URL = "postgres://postgres:postgres@postgres/postgres";
  GLITCHTIP_DOMAIN = "https://glitchtip.example.com";
}