-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.env.example
84 lines (71 loc) · 2.16 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Which images to pull for production deployment
VERSION=1.6.4
# Impact containers names, see
# https://docs.docker.com/compose/how-tos/environment-variables/envvars/#compose_project_name
# Be careful not to use the same for multiple stacks
COMPOSE_PROJECT_NAME=agentj
# database host and credentials
DB_HOST=db
DB_ROOT_PASSWORD=changeme
DB_NAME=agentj
DB_USER=agentj
DB_PASSWORD=changeme
DB_OPENDKIM_PASSWORD=changeme
# credentials of super admin account
SUPER_ADMIN_USERNAME=admin
SUPER_ADMIN_PASSWORD=changeme
# main hostname for application url & smtp ehlo
DOMAIN=example.com
# optionnal, use a different domain for smtp ehlo
# EHLO_DOMAIN=
# optionnal, use a different domain for app
# APP_DOMAIN=
# application locale
DEFAULT_LOCALE=fr
# application and db timezone
TZ=Europe/Paris
# To use accounts from Azure
# see https://doc.agentj.io/01-installation/#oauth-with-azure
ENABLE_AZURE_OAUTH=false
OAUTH_AZURE_CLIENT_SECRET=changeme
OAUTH_AZURE_CLIENT_ID=changeme
# Host IP to expose app web interface
PROXY_LISTEN_ADDR=127.0.0.1
# Host port to expose app web interface
PROXY_PORT=8090
# symfony trusted_proxies
# see https://symfony.com/doc/current/deployment/proxies.html
TRUSTED_PROXIES=
# Host port to expose incoming SMTP server
#SMTP_PORT=25
# Host port to expose outgoing SMTP server
#SMTP_OUT_PORT=26
# Host IP to expose SMTP servers (incoming & outgoing)
SMTP_LISTEN_ADDR=127.0.0.1
# Set to false to use remote ClamAV server
CLAMAV_AUTOSTART=true
# remote ClamAV server IP address, if used
CLAMAV_TCPADDRESS=0.0.0.0
CLAMAV_TCPPORT=3310
# To log errors to a Sentry instance
# see https://docs.sentry.io/concepts/key-terms/dsn-explainer/
SF_SENTRY_DSN=""
# Symfony mode: dev or prod
SF_APP_ENV=prod
# Generate APP_SECRET (required for CSRF token)
# openssl rand -hex 16
SF_APP_SECRET=
# Generate token for encryption
# openssl rand -hex 8
SF_TOKEN_ENCRYPTION_IV=
# openssl rand -base64 32
SF_TOKEN_ENCRYPTION_SALT=
# leave commented for production
# you probably need dev+test for dev
#COMPOSE_FILE=docker-compose.yml:compose.dev.yml:compose.test.yml
# used in compose.dev.yml
#DB_EXPOSED_PORT=3306
# (dev) fill with result of `id -u`
#UID=
# (dev) fill with result of `id -g`
#GID=