-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenv.example
29 lines (24 loc) · 1.03 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
# connection string to MYSQL Server
DB_CONNECTION_STRING='mysql://user:[email protected]/openpodcast?ssl={"rejectUnauthorized":true}'
# MYSQL connection can be also specified in its own variables
MYSQL_HOST=eu-central.connect.psdb.cloud
MYSQL_USER=user
MYSQL_PASSWORD=password
MYSQL_DATABASE=openpodcast
MYSQL_PORT=3306
MYSQL_OPTIONS='?ssl={"rejectUnauthorized":true}'
# it is also possible to specify all values in files,
# e.g. the password is specified in a file
MYSQL_PASSWORD_FILE=/run/secrets/mysql_password
# MYSQL connection for auth database which contains token for the api
MYSQL_AUTH_HOST=eu-central.connect.psdb.cloud
MYSQL_AUTH_USER=user
MYSQL_AUTH_PASSWORD=password
MYSQL_AUTH_DATABASE=openpodcast_auth
MYSQL_AUTH_PORT=3306
MYSQL_AUTH_OPTIONS='?ssl={"rejectUnauthorized":true}'
# it is also possible to specify all values in files,
# e.g. the password is specified in a file
MYSQL_AUTH_PASSWORD_FILE=/run/secrets/mysql_auth_password
# defines the port on which the server will listen, default is 8080
PORT=8080