-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.json
More file actions
86 lines (86 loc) · 2.08 KB
/
default.json
File metadata and controls
86 lines (86 loc) · 2.08 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"APP_SETTINGS": {
"port": 8090,
"body_limit": "50mb",
"body_parameter_limit": 50000
},
"JWT_ACCESS_SECRET": "tasdasdklaslkdaslkd",
"CORS_SETTINGS": {
"allowed_origins": [],
"allowed_paths": [],
"allowed_methods": ["GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"],
"allowed_credentials": false,
"allowed_headers": []
},
"LOGGER_SETTINGS": {
"level": "info",
"silence": ["healthz"]
},
"DB_SETTINGS": {
"host": "pg-1.dexcelerate.com",
"port": 5432,
"username": "nestjswebsockettest",
"password": "joker123!",
"database": "nestjswebsockettest",
"logging": "all",
"synchronize": true
},
"JWT_SETTINGS": {
"secret_key": "secret_key",
"algorithm": "HS512",
"access_token_expires_in": 20,
"refresh_token_expires_in": 10080
},
"REDIS_SETTINGS": {
"host": "redis-1.dexcelerate.com",
"port": 7001,
"key": "nestjs_example"
},
"REDIS_SERVERS": {
"STANDALONE": {
"host": "redis-1.dexcelerate.com",
"port": 6379,
"tls": true,
"password": "aslkdjkkjadwkljdaslkjdwqklqajd39821ikdjal"
},
"RATE": {
"host": "redis-1.dexcelerate.com",
"port": 3788,
"tls": false,
"password": "aslkdjkkjadwkljdaslkjdwqklqajd39821ikdjal"
},
"AUTH": {
"host": "redis-1.dexcelerate.com",
"port": 7001,
"tls": true,
"password": "aslkdjkkjadwkljdaslkjdwqklqajd39821ikdjal"
},
"TOKENS": {
"host": "redis-1.dexcelerate.com",
"port": 7001,
"tls": true,
"password": "aslkdjkkjadwkljdaslkjdwqklqajd39821ikdjal"
},
"CHAT": {
"host": "redis-1.dexcelerate.com",
"port": 7001,
"tls": true,
"password": "aslkdjkkjadwkljdaslkjdwqklqajd39821ikdjal"
}
},
"WSS_SETTINGS": {
"port": 8091,
"ping_interval": 3000,
"ping_timeout": 10000,
"path": "/socket.io"
},
"RABBITMQ_SETTINGS": {
"exchange": "nestjs_example_service",
"name": "rabbitmq",
"host": "localhost",
"vhost": "vhost",
"port": 5672,
"username": "admin",
"password": "password"
}
}