-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy path.env.example
More file actions
35 lines (28 loc) · 2.32 KB
/
Copy path.env.example
File metadata and controls
35 lines (28 loc) · 2.32 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
28
29
30
31
32
33
34
35
# docker-compose variable overrides.
# Copy to .env (which is gitignored) and uncomment/adjust what you need.
# All variables below have defaults built into docker-compose.yml, so this file
# is optional for a localhost demo — only needed to override defaults.
# ── nginx ports ───────────────────────────────────────────────────────────────
# Change if 80/443 are taken on the host (e.g. running multiple stacks in parallel).
# HTTP_PORT=8080
# HTTPS_PORT=8443
# ── timezone ──────────────────────────────────────────────────────────────────
# Applied to nginx and MySQL containers. PHP containers use Moscow time (hard-coded
# in the PHP image for Bitrix cron compatibility).
# TZ=Europe/Moscow
# ── MySQL database name ───────────────────────────────────────────────────────
# Must match the database name you put in mysql.env and Bitrix .settings.php.
# MYSQL_DATABASE=bitrix
# ── Docker network MTU ────────────────────────────────────────────────────────
# Lower if your cloud networking requires it (e.g. Yandex Cloud DDoS-protected IPs
# require 1450; standard Ethernet is 1500).
# DOCKER_MTU=1500
# ── Domain (used by certbot and FTP) ─────────────────────────────────────────
# DOMAIN=example.com
# ── Let's Encrypt / DNSroboCert ──────────────────────────────────────────────
# CERTBOT_PROVIDER=yandexcloud
# CERTBOT_EMAIL=admin@example.com
# ── Compose project name ──────────────────────────────────────────────────────
# Set a unique name when running multiple stacks on the same host to avoid
# container/network name collisions.
# COMPOSE_PROJECT_NAME=bitrix