# LogWhispererAI - Production Environment Configuration # Generated for deployment with reverse proxy # Date: 2026-04-03 # ============================================ # FRONTEND CONFIGURATION (VITE_* variables) # These are exposed to the browser # ============================================ # Backend API URL - HTTPS endpoint via reverse proxy VITE_API_URL=https://srv-logwhispererai.lab.home.lucasacchi.net # Webhook base URL - public HTTPS endpoint for webhooks VITE_WEBHOOK_BASE_URL=https://logwhispererai.lab.home.lucasacchi.net/webhook # Install script URL - public HTTPS endpoint for install script VITE_INSTALL_SCRIPT_URL=https://logwhispererai.lab.home.lucasacchi.net/install.sh # Application identification VITE_APP_NAME=LogWhispererAI # Application public URL - main frontend domain VITE_APP_URL=https://logwhispererai.lab.home.lucasacchi.net # ============================================ # BACKEND CONFIGURATION # ============================================ # CORS Origins - restrict to frontend domain for security # Only requests from this origin will be accepted by the backend CORS_ORIGINS=https://logwhispererai.lab.home.lucasacchi.net # Webhook base URL - used for generating webhook URLs # This should match VITE_WEBHOOK_BASE_URL WEBHOOK_BASE_URL=https://logwhispererai.lab.home.lucasacchi.net/webhook # API delay simulation (milliseconds) - simulates AI processing time DELAY_MS=1500 # Node environment NODE_ENV=production