/home/techb158/workloadmatch.com
Edit: /home/techb158/workloadmatch.com/.env.example (1387B)
# =============================================================================
# Course Management System — Environment Configuration
# =============================================================================
# Copy this file to .env and fill in your values.
# cp .env.example .env
# Then edit .env with your actual secrets.
# The .env file is excluded from git via .gitignore.
# =============================================================================
# --- Database ---
# Use 127.0.0.1 instead of localhost when using a non-default port
DB_HOST=127.0.0.1
DB_PORT=3306
DB_USER=your_db_username
DB_PASSWORD=your_db_password
DB_NAME=techb158_asn
# --- reCAPTCHA v3 ---
# Obtain from https://www.google.com/recaptcha/admin
RECAPTCHA_SECRET_KEY=your_recaptcha_secret_key
# --- Encryption (AES-256-CBC) ---
# Generate with: php -r "echo bin2hex(random_bytes(16));"
ENCRYPTION_SECRET_KEY=your_32_char_hex_key
ENCRYPTION_SECRET_IV=your_32_char_hex_iv
# --- SMTP (Password Reset Emails) ---
# Used by includes/forgetpassword.php
SMTP_HOST=mail.workloadmatch.com
SMTP_USER=support@workloadmatch.com
SMTP_PASSWORD=your_smtp_password
SMTP_PORT=465
# --- Pipedrive API (postPersons.php) ---
PIPEDRIVE_API_TOKEN=your_pipedrive_api_token
PIPEDRIVE_COMPANY_DOMAIN=your_pipedrive_company_domain
# --- Session Security ---
# Set to true in production (requires HTTPS).
SECURE=false