Skip to content

Installation Guide

Configuration

  • Configure an initial admin username and password you want to log in within the Web UI (only applied on first setup run).

    values:
    config:
    admin_username: "admin"
    admin_password: "changeme"
  • If needed, it is possible to set up a persitent storage for archived data.

    Example configuration using NFS:

    values:
    persistence:
    archive:
    enabled: true
    mountPath: /data/archive
    type: nfs
    path: /mnt/Tank/apps/archivebox
    server: ${NAS_IP}

    Make sure whatever filesystem the data is located on supports FSYNC and doesn’t squash permissions. NFS servers may need to set no_root_squash

    For more info about ArchiveBox’s filesystem requirements, see here:

  • Optionally add any other ArchiveBox Configuration variables you want

    Example:

    values:
    workload:
    main:
    podSpec:
    containers:
    main:
    env:
    SNAPSHOTS_PER_PAGE: 10

Further Reading

Ask For Help