41 lines
833 B
Plaintext
41 lines
833 B
Plaintext
# Application Stack Configuration
|
|
# Copy this file to .env and adjust values
|
|
|
|
# Timezone
|
|
TZ=Europe/Berlin
|
|
|
|
# Application Domain
|
|
APP_DOMAIN=michaelschiemer.de
|
|
|
|
# Application Settings
|
|
APP_ENV=production
|
|
APP_DEBUG=false
|
|
APP_URL=https://michaelschiemer.de
|
|
|
|
# Database Configuration
|
|
# Note: Using PostgreSQL from postgres stack
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_NAME=michaelschiemer
|
|
DB_USER=appuser
|
|
DB_PASS=<generate-with-openssl-rand-base64-32>
|
|
|
|
# Redis Configuration
|
|
# Generate password with: openssl rand -base64 32
|
|
REDIS_PASSWORD=<generate-with-openssl-rand-base64-32>
|
|
|
|
# Cache Configuration
|
|
CACHE_DRIVER=redis
|
|
CACHE_PREFIX=app
|
|
|
|
# Session Configuration
|
|
SESSION_DRIVER=redis
|
|
SESSION_LIFETIME=120
|
|
|
|
# Queue Worker Configuration
|
|
QUEUE_DRIVER=redis
|
|
QUEUE_CONNECTION=default
|
|
QUEUE_WORKER_SLEEP=3
|
|
QUEUE_WORKER_TRIES=3
|
|
QUEUE_WORKER_TIMEOUT=60
|