This repository was archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.config.env
More file actions
29 lines (29 loc) · 1.31 KB
/
.config.env
File metadata and controls
29 lines (29 loc) · 1.31 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
# Unique connection token, what you received, when you created connection on the "Autoadmin" main page
CONNECTION_TOKEN=
# Type of your database: oracledb, mysql, postgres, mssql;
CONNECTION_TYPE=
# Host, where your database is located
CONNECTION_HOST=
# Server port, where your database is located
CONNECTION_PORT=
# Your database username
CONNECTION_USERNAME=
# Your database password
CONNECTION_PASSWORD=
# Your database name
CONNECTION_DATABASE=
# Your database schema, if exists
CONNECTION_SCHEMA=
# Your database SID (it's instance id for oracle database)
CONNECTION_SID=
# SSL option. 1 - if you want to use ssl connection to your database, 0 - if you don't
CONNECTION_SSL=0
# SSL sertificate. It's required if you want use SSL connection to your database
# .env files have some problems with multi-line values
# (you need to replace line breaks with special characters \n and quote a line)
# You can also write the key to a file /storage/ssl-cert.txt and leave this field blank. This is an easier way.
CONNECTION_SSL_SERTIFICATE=
# Writing logs to a text file (/storage/stored-logs/logs.txt. 1 - if you want to save logs in text file, 0 - if you don't
LOGS_TO_TEXT_FILE=0
#Azure ecnryption option. If your database located in Microsoft Azure cloud, and requires encryption type 1 or 0 - if it doesn't'
CONNECTION_AZURE_ENCRYPTION=0