26 lines
663 B
Plaintext
26 lines
663 B
Plaintext
# Host port for the Tube Archivist web UI
|
|
TA_PORT=8000
|
|
|
|
# Public URL for Tube Archivist, including protocol and port
|
|
TA_HOST=http://localhost:8000
|
|
|
|
# Initial Tube Archivist credentials
|
|
TA_USERNAME=tubearchivist
|
|
TA_PASSWORD=your_secure_tubearchivist_password
|
|
|
|
# Elasticsearch password used by both Tube Archivist and archivist-es
|
|
ELASTIC_PASSWORD=your_secure_elasticsearch_password
|
|
|
|
# Host user/group ownership for downloaded files
|
|
HOST_UID=1000
|
|
HOST_GID=1000
|
|
|
|
# Timezone
|
|
TZ=UTC
|
|
|
|
# Host path for downloaded YouTube media
|
|
TA_YOUTUBE_PATH=/mnt/media/youtube
|
|
|
|
# Elasticsearch heap sizing; Tube Archivist recommends 1g for the default stack
|
|
ES_JAVA_OPTS=-Xms1g -Xmx1g
|