2021-02-06 15:27:19 +00:00
|
|
|
# Docker container name
|
2021-01-01 12:11:22 +00:00
|
|
|
LD_CONTAINER_NAME=linkding
|
2021-02-06 15:27:19 +00:00
|
|
|
# Port on the host system that the application should be published on
|
2021-01-01 12:11:22 +00:00
|
|
|
LD_HOST_PORT=9090
|
2021-02-06 15:27:19 +00:00
|
|
|
# Directory on the host system that should be mounted as data dir into the Docker container
|
2021-01-01 12:11:22 +00:00
|
|
|
LD_HOST_DATA_DIR=./data
|
2022-10-05 08:01:44 +00:00
|
|
|
|
2022-08-07 10:41:11 +00:00
|
|
|
# Can be used to run linkding under a context path, for example: linkding/
|
|
|
|
# Must end with a slash `/`
|
|
|
|
LD_CONTEXT_PATH=
|
2022-09-04 06:08:15 +00:00
|
|
|
# Username of the initial superuser to create, leave empty to not create one
|
|
|
|
LD_SUPERUSER_NAME=
|
|
|
|
# Password for the initial superuser, leave empty to disable credentials authentication and rely on proxy authentication instead
|
|
|
|
LD_SUPERUSER_PASSWORD=
|
2021-09-04 20:31:04 +00:00
|
|
|
# Option to disable background tasks
|
|
|
|
LD_DISABLE_BACKGROUND_TASKS=False
|
2021-02-06 15:27:19 +00:00
|
|
|
# Option to disable URL validation for bookmarks completely
|
2021-09-04 20:31:04 +00:00
|
|
|
LD_DISABLE_URL_VALIDATION=False
|
2022-09-04 06:08:15 +00:00
|
|
|
# Enables support for authentication proxies such as Authelia
|
|
|
|
LD_ENABLE_AUTH_PROXY=False
|
|
|
|
# Name of the request header that the auth proxy passes to the application to identify the user
|
|
|
|
# See docs/Options.md for more details
|
|
|
|
LD_AUTH_PROXY_USERNAME_HEADER=
|
|
|
|
# The URL that linkding should redirect to after a logout, when using an auth proxy
|
|
|
|
# See docs/Options.md for more details
|
|
|
|
LD_AUTH_PROXY_LOGOUT_URL=
|
2022-10-05 08:01:44 +00:00
|
|
|
# List of trusted origins from which to accept POST requests
|
|
|
|
# See docs/Options.md for more details
|
|
|
|
LD_CSRF_TRUSTED_ORIGINS=
|