-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.env
More file actions
55 lines (46 loc) · 925 Bytes
/
template.env
File metadata and controls
55 lines (46 loc) · 925 Bytes
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
# Server Configuration
SSL_SERVER_NAME=localhost
HOST=localhost
PORT=5000
SSL_PORT=5001
SSL_CERTIFICATE=
SSL_KEY=
SSL_PEM=
# Publisher gRPC Configuration
PUBLISHER_GRPC_HOST=127.0.0.1
PUBLISHER_GRPC_PORT=6000
# Bridge gRPC Configuration
BRIDGE_GRPC_HOST=127.0.0.1
BRIDGE_GRPC_PORT=10000
# CORS
ORIGINS=[]
# Database Configuration
MYSQL_HOST=127.0.0.1
MYSQL_USER=
MYSQL_PASSWORD=
MYSQL_DATABASE=relaysms_gateway_server
SQLITE_DATABASE_PATH=gateway_server.db
# IMAP Configuration
IMAP_SERVER=
IMAP_PORT=993
IMAP_USERNAME=
IMAP_PASSWORD=
MAIL_FOLDER=INBOX
# FTP Configuration
FTP_USERNAME=
FTP_PASSWORD=
FTP_IP_ADDRESS=localhost
FTP_PORT=2222
FTP_PASSIVE_PORTS=60000-65000
FTP_READ_LIMIT=51200
FTP_WRITE_LIMIT=51200
FTP_MAX_CON=256
FTP_MAX_CON_PER_IP=5
FTP_DIRECTORY=ftp_file_store
# Security
SMTP_ALLOWED_EMAIL_ADDRESSES=
DISABLE_BRIDGE_PAYLOADS_OVER_HTTP=false
# Logging
LOG_LEVEL=info
# Environment
MODE=development