-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathconf.toml
49 lines (35 loc) · 908 Bytes
/
conf.toml
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
WebStaticFilesPath = "web"
# List of allowed origins
# e.g. "https://localhost:8080"
CORSAllowedOrigins = []
[AccountManager]
Type = "unix"
[AccountManager.OAuth2]
Provider = "Google"
RedirectURL = "http://localhost:8080/oauth2callback"
[SecretManager]
Type = ""
[SecretManager.GCP]
OAuth2ClientResourceID = ""
[SecretManager.UNIX]
SecretFilePath = "../secrets.json"
[EncryptionService]
Type = "Fake"
[EncryptionService.GCP_KMS]
KeyName = ""
[DatabaseService]
Type = "InMemory"
[DatabaseService.Spanner]
DatabaseName = "projects/<project id>/instances/<instance id>/databases/<database>"
[InstanceManager]
Type = "unix"
HostOrchestratorProtocol = "http"
AllowSelfSignedHostSSLCertificate = true
[InstanceManager.GCP]
ProjectId = ""
HostImageFamily = ""
HostOrchestratorPort = 1080
[InstanceManager.UNIX]
HostOrchestratorPort = 2080
[[WebRTC.IceServers]]
URLs = ["stun:stun.l.google.com:19302"]