forked from taskcluster/taskcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
58 lines (45 loc) · 1.69 KB
/
config.yml
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
56
57
58
defaults:
app:
statsComponent: 'secrets'
# Taskcluster configuration
taskcluster:
rootUrl: !env TASKCLUSTER_ROOT_URL
# Taskcluster credentials for this server, allowing access to the Azure table,
# sentry, etc.
credentials:
clientId: !env TASKCLUSTER_CLIENT_ID
accessToken: !env TASKCLUSTER_ACCESS_TOKEN
azure:
# deprecated way to specify an encryption key
cryptoKey: !env:optional AZURE_CRYPTO_KEY
postgres:
readDbUrl: !env READ_DB_URL
writeDbUrl: !env WRITE_DB_URL
dbCryptoKeys: !env:json:optional DB_CRYPTO_KEYS
monitoring:
level: !env:optional LEVEL
errorConfig: !env:json:optional ERROR_CONFIG
# Server configuration
server:
# Port to listen for requests on
port: !env:number PORT
# Environment 'development' or 'production'
env: !env NODE_ENV
# Force SSL, not useful when runnning locally
forceSSL: !env:bool FORCE_SSL
# Trust a forwarding proxy
trustProxy: true
# new relic config (processed in services/prelude.js)
newRelic: !env:json:optional NEW_RELIC
test:
taskcluster:
rootUrl: "https://tc.example.com"
app:
statsComponent: 'test-queue'
azure:
cryptoKey: 'CNcj2aOozdo7Pn+HEkAIixwninIwKnbYc6JPS9mNxZk='
server:
port: 60415
forceSSL: false
env: 'development'
trustProxy: false