mirror of
https://github.com/Theodor-Springmann-Stiftung/server-package.git
synced 2025-12-16 14:45:30 +00:00
30 lines
792 B
Plaintext
30 lines
792 B
Plaintext
# BookStack Production Configuration
|
|
# Copy this file to .env and update with your actual values
|
|
|
|
# ============================================
|
|
# User/Group Configuration
|
|
# ============================================
|
|
# Run `id` on your host to get your UID/GID
|
|
PUID=1000
|
|
PGID=1000
|
|
|
|
# Timezone
|
|
TZ=Europe/Berlin
|
|
|
|
# ============================================
|
|
# App AND Database Configuration
|
|
# ============================================
|
|
#
|
|
APP_URL=http://127.0.0.1:9000
|
|
APP_KEY=base64:3XIpch+NTzDM7LfiNXyMK7dZJvTWtQlCDb6d0r2rhrg=
|
|
|
|
# Database name
|
|
DB_DATABASE=bookstack_testing
|
|
DB_USERNAME=bookstack_testing
|
|
DB_PASSWORD=testing_password_123
|
|
MYSQL_ROOT_PASSWORD=testing_password_123
|
|
|
|
# Optional: Enable async email processing (recommended for better performance)
|
|
# QUEUE_CONNECTION=database
|
|
|