14 lines
407 B
Bash
14 lines
407 B
Bash
# Database Configuration
|
|
# Generate a secure password for your database
|
|
# You can use: openssl rand -base64 32
|
|
DB_PASSWORD=your_secure_database_password_here
|
|
|
|
# Wiki.js Configuration
|
|
# The domain where your wiki will be accessible
|
|
# For local development, use localhost:3000
|
|
# For production, use your actual domain
|
|
WIKI_URL=http://localhost:3000
|
|
|
|
# Optional: Set timezone (default is UTC)
|
|
TZ=Europe/London
|