-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
136 lines (98 loc) · 4.38 KB
/
.env.example
File metadata and controls
136 lines (98 loc) · 4.38 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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# ============================================================
# Znuny 7.2 Docker — environment variable reference
# Copy this file to .env and adjust the values before starting.
# ============================================================
# ------------------------------------------------------------
# Znuny version (must match the image tag you want to use)
# ------------------------------------------------------------
ZNUNY_VERSION=7.3.1
# ------------------------------------------------------------
# Database — MariaDB settings
# ------------------------------------------------------------
# Database name. Default: znuny
ZNUNY_DB_NAME=znuny
# Hostname or IP of the database server. Default: mariadb (service name)
ZNUNY_DB_HOST=mariadb
# Database port. Default: 3306
ZNUNY_DB_PORT=3306
# Application database user. Default: znuny
ZNUNY_DB_USER=znuny
# Application database user password. CHANGE THIS!
ZNUNY_DB_PASSWORD=changeme
# MariaDB root user. Default: root
MYSQL_ROOT_USER=root
# MariaDB root password. CHANGE THIS!
MYSQL_ROOT_PASSWORD=changeme
# ------------------------------------------------------------
# Znuny — application settings
# ------------------------------------------------------------
# Startup mode:
# no — Auto-configure, initialise DB, start all services (default)
# yes — Launch the web installer at /znuny/installer.pl
# restore — Restore a backup (requires ZNUNY_BACKUP_DATE)
ZNUNY_INSTALL=no
# Admin user (root@localhost) password. CHANGE THIS!
#ZNUNY_ROOT_PASSWORD=changeme
# Fully-qualified hostname shown in Znuny. Auto-generated if not set.
ZNUNY_HOSTNAME=znuny.example.com
# Default interface language (e.g. en, de, es, fr). Default: en
#ZNUNY_LANGUAGE=en
# Default timezone. Default: UTC
#ZNUNY_TIMEZONE=UTC
# Article attachment storage backend:
# ArticleStorageDB — store attachments in the database (default)
# ArticleStorageFS — store attachments on the filesystem (mount ./volumes/article)
ZNUNY_ARTICLE_STORAGE_TYPE=ArticleStorageDB
# Ticket counter starting value (leave empty to keep default)
#ZNUNY_TICKET_COUNTER=
# Ticket number generator: DateChecksum, Date, AutoIncrement, Random. Default: DateChecksum
#ZNUNY_NUMBER_GENERATOR=DateChecksum
# Set file permissions on startup: yes (default), no, skip-article-dir
ZNUNY_SET_PERMISSIONS=yes
# Allow installation of packages not verified by Znuny: yes, no (default)
ZNUNY_ALLOW_NOT_VERIFIED_PACKAGES=no
# Disable automatic mail account polling: yes, no (default)
ZNUNY_DISABLE_EMAIL_FETCH=no
# Enable verbose debug output: yes, no (default)
ZNUNY_DEBUG=no
# ------------------------------------------------------------
# Backup settings
# ------------------------------------------------------------
# Cron schedule for automated backups (default: daily at 04:00).
# Set to "disable" to turn off automated backups.
ZNUNY_BACKUP_TIME=0 4 * * *
# Backup type: fullbackup (default), nofullbackup, dbonly
#ZNUNY_BACKUP_TYPE=fullbackup
# Backup compression: gzip (default), bzip2
#ZNUNY_BACKUP_COMPRESSION=gzip
# Delete backups older than this many days. Default: 30
#ZNUNY_BACKUP_ROTATION=30
# ------------------------------------------------------------
# Restore settings (only used when ZNUNY_INSTALL=restore)
# ------------------------------------------------------------
# Name of the backup file/directory inside ./volumes/backups to restore.
#ZNUNY_BACKUP_DATE=2024-01-15_04-00
# Drop the existing database before restoring: yes, no (default)
#ZNUNY_DROP_DATABASE=no
# ------------------------------------------------------------
# SMTP relay settings
# ------------------------------------------------------------
# Sendmail module: SMTP, SMTPS, Sendmail. Leave empty to use Sendmail (default).
#ZNUNY_SENDMAIL_MODULE=SMTP
# SMTP server hostname or IP
#ZNUNY_SMTP_SERVER=smtp.example.com
# SMTP server port
#ZNUNY_SMTP_PORT=587
# SMTP authentication username
#ZNUNY_SMTP_USERNAME=
# SMTP authentication password
#ZNUNY_SMTP_PASSWORD=
# ------------------------------------------------------------
# HTTP port mapping (host side). Default: 8080
# ------------------------------------------------------------
ZNUNY_HTTP_PORT=8080
# ------------------------------------------------------------
# GitHub Container Registry owner (used in image tags)
# Set this to your GitHub username or organisation name.
# ------------------------------------------------------------
GITHUB_REPOSITORY_OWNER=ckbaker10