2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-25 08:08:36 +00:00
frappe_docker/example.env

42 lines
1.6 KiB
Bash
Raw Normal View History

# Reference: https://github.com/frappe/frappe_docker/blob/main/docs/images-and-compose-files.md
2022-02-25 13:11:31 +03:00
FRAPPE_VERSION=v13.20.1
# Only with ERPNext override
2022-02-25 13:11:31 +03:00
ERPNEXT_VERSION=v13.20.0
2021-12-13 19:36:40 +03:00
DB_PASSWORD=123
# Only if you use external database
2021-12-26 13:38:51 +05:30
DB_HOST=
DB_PORT=
# Only if you use external Redis
2021-12-26 13:38:51 +05:30
REDIS_CACHE=
REDIS_QUEUE=
REDIS_SOCKETIO=
2021-12-13 19:36:40 +03:00
# Only with HTTPS override
LETSENCRYPT_EMAIL=mail@example.com
# These environment variables are not required.
# Default value is `$$host` which resolves site by host. For example, if your host is `example.com`,
# site's name should be `example.com`, or if host is `127.0.0.1` (local debugging), it should be `127.0.0.1`.
# This variable allows to override described behavior. Let's say you create site named `mysite`
# and do want to access it by `127.0.0.1` host. Than you would set this variable to `mysite`.
FRAPPE_SITE_NAME_HEADER=
# Default value is `127.0.0.1`. Set IP address as our trusted upstream address.
UPSTREAM_REAL_IP_ADDRESS=
# Default value is `X-Forwarded-For`. Set request header field whose value will be used to replace the client address
UPSTREAM_REAL_IP_HEADER=
# Allowed values are on|off. Default value is `off`. If recursive search is disabled,
# the original client address that matches one of the trusted addresses
# is replaced by the last address sent in the request header field defined by the real_ip_header directive.
# If recursive search is enabled, the original client address that matches one of the trusted addresses is replaced by the last non-trusted address sent in the request header field.
UPSTREAM_REAL_IP_RECURSIVE=