16 lines
560 B
Plaintext
16 lines
560 B
Plaintext
# Server-side .env for netcup deploy. Copy to /srv/librenotes/.env on the host.
|
|
# Used by: docker compose -f docker-compose.yml -f compose.netcup.yaml up -d --build
|
|
|
|
# Public origin (caddy reverse-proxies to librenotes:8080)
|
|
LIBRENOTES_BASE_URL=https://ln.cloud.librete.ch
|
|
|
|
# JWT secret — at least 32 bytes. Generate: openssl rand -base64 48
|
|
LIBRENOTES_JWT_SECRET=CHANGE_ME
|
|
|
|
# SMTP relay (magic-link delivery)
|
|
LIBRENOTES_SMTP_HOST=smtp.example.com
|
|
LIBRENOTES_SMTP_PORT=587
|
|
LIBRENOTES_SMTP_USER=
|
|
LIBRENOTES_SMTP_PASS=
|
|
LIBRENOTES_SMTP_FROM=no-reply@librete.ch
|