-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1.3 KB
/
.env.example
File metadata and controls
27 lines (22 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# OEM Activation System - Environment Configuration
# Copy this file to .env and update the values for your environment.
# NEVER commit .env to version control.
# ── Database ────────────────────────────────────────────────────────
DB_HOST=db
DB_NAME=oem_activation
DB_USER=oem_user
DB_PASS=CHANGE_ME_db_password
MARIADB_ROOT_PASSWORD=CHANGE_ME_root_password
# ── Redis ───────────────────────────────────────────────────────────
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=CHANGE_ME_redis_password
# ── Application ─────────────────────────────────────────────────────
APP_TIMEZONE=UTC
BACKUP_RETENTION_DAYS=30
# ── CORS (comma-separated allowed origins, empty = none) ────────────
CORS_ORIGINS=
# ── PHP Settings ────────────────────────────────────────────────────
PHP_MEMORY_LIMIT=256M
PHP_UPLOAD_MAX_FILESIZE=50M
PHP_POST_MAX_SIZE=50M