# sets up appropriate hostname for the Nginx server
INJECT_DOMAIN=inject.localhost

# Secret key for cryptographic signing
INJECT_SECRET_KEY=your-at-least-fifty-or-more-characters-long-secret-key

# enable AAI, uncomment the next line to disable it
# INJECT_NOAUTH=true

# host parametres that should be setup for client and server to interact correctly,
# do not touch unless you know what you are doing
INJECT_HOST_ADDRESSES=$INJECT_DOMAIN
VITE_HTTP_HOST=$INJECT_DOMAIN
VITE_HTTP_WS=ws://$INJECT_DOMAIN/inject/api/v1/subscription
CORS_ALLOWED_ORIGINS=http://$INJECT_DOMAIN

# for certbot generation, use with certbot-generator.yml
CERTBOT_EMAIL=noemail@inject.localhost

# for email sending of AAI mails
INJECT_EMAIL_HOST=
INJECT_EMAIL_PORT=
INJECT_EMAIL_HOST_USER=
INJECT_EMAIL_HOST_PASSWORD=
INJECT_EMAIL_SENDER_ADDRESS=
INJECT_EMAIL_PROTOCOL=

# enable logging to a specific file
# INJECT_LOGS=data/

