21 lines
540 B
Bash
21 lines
540 B
Bash
# CalibreSync — example environment file
|
|
# All settings are stored in the SQLite database and configurable via the
|
|
# dashboard at /settings. This file is only used as a reference.
|
|
|
|
# SFTP / remote host
|
|
SFTP_HOST=192.168.1.10
|
|
SFTP_PORT=22
|
|
SFTP_USER=myuser
|
|
SFTP_REMOTE_PATH=/mnt/media/zips
|
|
|
|
# Auth: "key" (paste PEM in dashboard) or "password"
|
|
SFTP_AUTH_METHOD=key
|
|
|
|
# Calibre-Web
|
|
CALIBRE_URL=http://localhost:8083
|
|
CALIBRE_USER=admin
|
|
CALIBRE_PASS=admin123
|
|
|
|
# Local temp directory for downloads and extraction
|
|
LOCAL_WORK_DIR=/tmp/calibresync
|