{
  "service": {
    "name": "Northstar Photos",
    "version": "1.14.2",
    "environment": "production",
    "publicUrl": "https://photos.example.net",
    "timezone": "America/Toronto",
    "readOnly": false
  },
  "server": {
    "host": "0.0.0.0",
    "port": 8080,
    "trustedProxies": [
      "10.0.0.0/8",
      "172.16.0.0/12"
    ],
    "tls": {
      "enabled": false,
      "terminatedByProxy": true
    },
    "limits": {
      "maxUploadBytes": 21474836480,
      "requestTimeoutSeconds": 600,
      "concurrentUploads": 6
    }
  },
  "storage": {
    "libraryPath": "/srv/photos/library",
    "uploadPath": "/srv/photos/uploads",
    "thumbnailPath": "/srv/photos/cache/thumbnails",
    "temporaryPath": "/srv/photos/tmp",
    "preserveOriginalFilenames": true,
    "organizeBy": [
      "year",
      "month",
      "day"
    ],
    "volumes": [
      {
        "name": "primary",
        "path": "/srv/photos",
        "capacityBytes": 8796093022208,
        "usedBytes": 3427383902208,
        "writable": true
      },
      {
        "name": "archive",
        "path": "/mnt/archive/photos",
        "capacityBytes": 17592186044416,
        "usedBytes": 12094627905536,
        "writable": false
      }
    ]
  },
  "database": {
    "engine": "postgresql",
    "host": "postgres",
    "port": 5432,
    "database": "photo_library",
    "username": "photo_service",
    "sslMode": "prefer",
    "pool": {
      "minimumConnections": 2,
      "maximumConnections": 20,
      "idleTimeoutSeconds": 300
    }
  },
  "authentication": {
    "localLoginEnabled": true,
    "registrationEnabled": false,
    "sessionLifetimeHours": 168,
    "oidc": {
      "enabled": true,
      "issuerUrl": "https://auth.example.net/application/o/photos/",
      "clientId": "northstar-photos",
      "scopes": [
        "openid",
        "profile",
        "email"
      ],
      "autoRegister": false
    }
  },
  "mediaProcessing": {
    "workers": 4,
    "extractExif": true,
    "generateThumbnails": true,
    "thumbnailSizes": [
      256,
      768,
      1440
    ],
    "videoTranscoding": {
      "enabled": true,
      "hardwareAcceleration": "vaapi",
      "preferredCodec": "h264",
      "maximumResolution": "2160p",
      "quality": 23
    },
    "machineLearning": {
      "enabled": true,
      "endpoint": "http://ml-service:3003",
      "faceRecognition": {
        "enabled": true,
        "minimumConfidence": 0.72,
        "minimumFaceSizePixels": 80
      },
      "semanticSearch": {
        "enabled": true,
        "model": "ViT-B-32",
        "batchSize": 32
      }
    }
  },
  "sharing": {
    "publicLinksEnabled": true,
    "defaultExpirationDays": 30,
    "allowDownloads": true,
    "requirePasswordByDefault": false,
    "maximumItemsPerShare": 5000
  },
  "backup": {
    "enabled": true,
    "schedule": "0 3 * * *",
    "destination": "/mnt/backups/photo-library",
    "retention": {
      "daily": 7,
      "weekly": 4,
      "monthly": 12
    },
    "include": [
      "database",
      "configuration",
      "albums",
      "sidecarMetadata"
    ],
    "exclude": [
      "thumbnails",
      "transcodes",
      "temporaryFiles"
    ],
    "lastRun": {
      "startedAt": "2026-07-15T03:00:00-04:00",
      "completedAt": "2026-07-15T03:18:42-04:00",
      "status": "success",
      "filesProcessed": 18432,
      "bytesWritten": 28749381632
    }
  },
  "notifications": {
    "email": {
      "enabled": true,
      "smtpHost": "mail.example.net",
      "smtpPort": 587,
      "secure": false,
      "fromAddress": "photos@example.net"
    },
    "events": [
      "backup_failed",
      "storage_low",
      "import_completed"
    ]
  },
  "users": [
    {
      "id": "usr_01J2J7M3K8YQF6B7WTN4C9P2RA",
      "displayName": "Library Admin",
      "email": "admin@example.net",
      "role": "administrator",
      "quotaBytes": null,
      "preferences": {
        "theme": "system",
        "defaultView": "timeline",
        "showArchived": false
      }
    },
    {
      "id": "usr_01J2J8A6DV0HZMNPQX35KSRTYC",
      "displayName": "Family Member",
      "email": "family@example.net",
      "role": "member",
      "quotaBytes": 536870912000,
      "preferences": {
        "theme": "dark",
        "defaultView": "albums",
        "showArchived": false
      }
    }
  ],
  "statistics": {
    "assets": {
      "total": 148236,
      "photos": 139882,
      "videos": 8354,
      "rawFiles": 19427,
      "favorites": 2631,
      "archived": 918,
      "unprocessed": 37
    },
    "albums": {
      "total": 342,
      "shared": 28
    },
    "people": {
      "recognized": 74,
      "unnamed": 213
    },
    "librarySizeBytes": 3427383902208,
    "lastIndexedAt": "2026-07-15T11:42:18-04:00"
  }
}