# 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= # Redis Configuration # Generate password with: openssl rand -base64 32 REDIS_PASSWORD= # 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 # Git Repository Configuration (optional - if set, container will clone/pull code on start) # Uncomment to enable Git-based deployment: # GIT_REPOSITORY_URL=https://git.michaelschiemer.de/michael/michaelschiemer.git # GIT_BRANCH=main # GIT_TOKEN= # GIT_USERNAME= # GIT_PASSWORD=