Skip to content

Multiple Users

Immich Kiosk supports multiple user API keys.

key:value mappings of Immich usernames to their corresponding API keys.

Settings

Key Value
CONFIG immich_users_api_keys
ENV N/A
URL N/A
VALUE map[string]string
DEFAULT ""
Using with config.yaml file
immich_users_api_keys: ""
  1. Configure multiple users by adding their API keys to the immich_users_api_keys field in your config.yaml:

    immich_users_api_keys:
    john: "api_key_here"
    jane: "api_key_here"
  2. Access a specific user’s content by including the user parameter in the URL:

    https://{URL}?user=john

Display the user used to fetch the image.

Settings

Key Value
CONFIG show_user
ENV KIOSK_SHOW_USER
URL show_user
VALUE bool
DEFAULT false
Using with config.yaml file
show_user: false
Using with ENV in your docker-compose file
environment:
KIOSK_SHOW_USER: false
Using with url queries
http://{URL}?show_user=false