mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
52 lines
No EOL
1.3 KiB
Bash
52 lines
No EOL
1.3 KiB
Bash
# ===============================
|
||
# ERPNext Docker Environment File
|
||
# Target Domain: erpnext.domba.wirabumisoftware.com
|
||
# Reverse Proxy: External NGINX (your server)
|
||
# ===============================
|
||
|
||
# ERPNext / Frappe Version
|
||
ERPNEXT_VERSION=v16.13.0
|
||
|
||
# MariaDB root password (for internal MariaDB container only)
|
||
DB_PASSWORD=2b0d62dfd0d4453b9cb8003c38868e2a
|
||
|
||
# If using Docker secrets for DB password (you are NOT using it)
|
||
DB_PASSWORD_SECRETS_FILE=
|
||
|
||
# External Database config (unused)
|
||
DB_HOST=
|
||
DB_PORT=
|
||
|
||
# External Redis (unused)
|
||
REDIS_CACHE=
|
||
REDIS_QUEUE=
|
||
|
||
# You are using external NGINX, NOT Certbot inside Docker
|
||
LETSENCRYPT_EMAIL=
|
||
|
||
# Site name header override (default empty)
|
||
FRAPPE_SITE_NAME_HEADER=
|
||
|
||
# Default HTTP/HTTPS ports inside ERPNext Nginx container
|
||
HTTP_PUBLISH_PORT=12000
|
||
HTTPS_PUBLISH_PORT=
|
||
|
||
# Real IP configs (not required for external NGINX)
|
||
UPSTREAM_REAL_IP_ADDRESS=
|
||
UPSTREAM_REAL_IP_HEADER=
|
||
UPSTREAM_REAL_IP_RECURSIVE=
|
||
|
||
# Increase timeout/body size if needed (optional)
|
||
PROXY_READ_TIMEOUT=
|
||
CLIENT_MAX_BODY_SIZE=
|
||
|
||
# Traefik rule (unused because you're using external NGINX)
|
||
SITES_RULE=Host(`erpnext.domba.wirabumisoftware.com`)
|
||
|
||
# nginx‑proxy overrides — REQUIRED for routing
|
||
NGINX_PROXY_HOSTS=erpnext.domba.wirabumisoftware.com
|
||
|
||
|
||
# Optional tuning
|
||
PROXY_READ_TIMEOUT=120
|
||
CLIENT_MAX_BODY_SIZE=50m |