Documentation

file

The file backend allows Radiator to authenticate users against a simple text file. This is useful for basic authentication scenarios and testing purposes. The file contains a list of usernames and passwords, which are used to verify the user's credentials.

Example configuration of a file backend:

# file backend configuration
file "USERS_INTERNAL_FILE" {
    filename "/var/lib/radiator/db/users-internal/users-internal.file";
}

The filename attribute should be the name of the file backend.

See also the jsonfile backend.

Navigation
Parents