-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.toml
More file actions
48 lines (34 loc) · 1.22 KB
/
config.toml
File metadata and controls
48 lines (34 loc) · 1.22 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[database]
## Doesn't support multiple hosts or clusters
## Default to localhost:27017
## List of server addresses separated by a comma.
## The list can be on multiple lines.
#addrs = ["127.0.0.1:27017"]
#useSSLProtocol = true
## If not specified, default to the "test" database.
database = "gwentapi"
## If authentication is enabled on your mongod comment out these lines.
## If authenticationDatabase is left empty it is defaulted
## to the value of "database" if set, otherwise "admin".
[database.authentication]
#username = "user"
#password = "myPassword"
#authenticationDatabase = "admin"
[app]
LogInfoFile = "./info.log"
LogErrorFile = "./error.log"
debug = false
verbose = false
## The URL where the service is publicly accessible.
## Every href linking to a resource will point to it.
##
## It has no impact on how you access the service
## from the host machine, which remains localhost:8080 by default.
## So you still need a proxy server redirecting traffic to the app.
publicURL = "http://localhost:8080"
## Port which the service is listening to
port = ":8080"
## Path on the server pointing to the location of the folder
## containing the artworks for the cards.
## "./media" by default.
mediaPath = "./media"