-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
61 lines (47 loc) · 1.76 KB
/
.env.example
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
GITLAB_CE_VERSION=latest
GITLAB_HOST=gitlab.mydomain.io
IS_NGINX_LISTEN_HTTPS=false
# ==============================================
# ----------- GitLab Configuration -------------
GITLAB_PORT=802
GITLAB_HTTPS_PORT=8043
GITLAB_SSH_PORT=8229
# The ssh port need to same as the port in the /etc/sshd/sshd_config
# based on the port where is your sshd server running.
GITLAB_SHELL_SSH_PORT=8229
GITLAB_LOGS_PATH=/srv/gitlab/logs
GITLAB_DATA_PATH=/srv/gitlab/data
GITLAB_FORCE_SSL=false
GITLAB_HTTPS=false
# ---------- End GitLab Configuration ----------
# ==============================================
# ------------ SMTP Configuration --------------
GITLAB_SMTP_ENABLED=false
GITLAB_SMTP_ADDRESS=smtp.yourdomain.com
GITLAB_SMTP_PORT=587
GITLAB_SMTP_USER_NAME=noreply@yourdomain.com
GITLAB_SMTP_PASSWORD=yourpassword
GITLAB_SMTP_DOMAIN=yourdomain.com
GITLAB_SMTP_AUTHENTICATION=login
GITLAB_SMTP_ENABLE_STARTTLS_AUTO=true
GITLAB_SMTP_TLS=false
GITLAB_SMTP_OPENSSL_VERIFY_MODE=none
GITLAB_EMAIL_FROM=noreply@yourdomain.com
GITLAB_EMAIL_REPLY_TO=support@yourdomain.com
GITLAB_EMAIL_DISPLAY_NAME="GitLab Company"
# The config to enable incoming email
GITLAB_INCOMING_EMAIL_ENABLED=true
# ---------- End SMTP Configuration ------------
# ==============================================
# -------------- Prometheus Config -------------
PROMETHEUS_ENABLED=false
PROMETHEUS_MONITORING_ENABLED=false
# ----------------------------------------------
# ==============================================
# ------------- Puma Configuration -------------
PUMA_WORKER_PROCESSES=2
# ----------------------------------------------
# ==============================================
# -------------- Alert Manager -----------------
ALERTMANAGER_ENABLED=false
# ----------------------------------------------