-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env
31 lines (26 loc) · 783 Bytes
/
.env
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
# feel free to set to debug
LOG_CONSOLE_LEVEL=info
LOG_LEVEL=info
MYSQLDB_USER=root
MYSQLDB_PASSWORD=AnsibleForms!123
# the port on the host, feel free to set back to 3306
MYSQLDB_LOCAL_PORT=3307
# the port inside docker (must be 3306)
MYSQLDB_DOCKER_PORT=3306
# the port on the host, feel free to set to 443
WEBAPP_LOCAL_PORT=8443
# the port inside the docker (can be anything), feel free to set to 443
WEBAPP_DOCKER_PORT=8443
# enable https ?
HTTPS=1
# production
NODE_ENV=production
# home directory
HOME_DIR=/root
# admin user
ADMIN_USERNAME=admin
ADMIN_PASSWORD=AnsibleForms!123
# database encryption secret => once set, do not change, otherwise you will lose all your passwords
# ENCRYPTION_SECRET=AnsibleForms!123
# jwt token secret
# ACCESS_TOKEN_SECRET=AnsibleForms!123