-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.sample
32 lines (31 loc) · 1000 Bytes
/
.env.sample
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
##
## Server
##
# Path to the geoIP database file
GEOIP_DB_PATH=./geo_ip/GeoLite2-Country.mmdb
# Port on which the server listens
PORT=8800
# Path to the directory containing the web assets to be served as
# static files
ASSETS_DIRECTORY=./assets
# Path to Bity configuration file
BITY_CONFIG_PATH=./bity_config.json
# Log levels
RUST_LOG=nym_exchange=debug,tower_http=debug
##
## Geoipupdate
##
# MaxMind account ID (replace it)
GEOIPUPDATE_ACCOUNT_ID=xxx
# MaxMind license key (replace it)
GEOIPUPDATE_LICENSE_KEY=xxx
# List of space-separated database edition IDs. Edition IDs may
# consist of letters, digits, and dashes. For example, GeoIP2-City
# would download the GeoIP2 City database (GeoIP2-City).
GEOIPUPDATE_EDITION_IDS=GeoLite2-Country
# The number of hours between geoipupdate runs. If this is not set
# or is set to 0, geoipupdate will run once and exit.
GEOIPUPDATE_FREQUENCY=72
# The path to the directory where geoipupdate will download the
# database.
GEOIP_DB_DIRECTORY=./geo_ip