-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathlitegraph.json
More file actions
125 lines (125 loc) · 3.1 KB
/
Copy pathlitegraph.json
File metadata and controls
125 lines (125 loc) · 3.1 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"CreatedUtc": "2025-01-27T22:19:01.489573Z",
"RequestTimeoutSeconds": 60,
"Logging": {
"Enable": true,
"Servers": [
{
"Hostname": "127.0.0.1",
"Port": 514
}
],
"LogDirectory": "./logs/",
"LogFilename": "litegraph.log",
"ConsoleLogging": true,
"EnableColors": true,
"JsonLogOutput": false,
"MinimumSeverity": 0,
"Header": "[LiteGraph] ",
"LogQueries": false,
"LogResults": false
},
"Caching": {
"Enable": true,
"Capacity": 1000,
"EvictCount": 100
},
"Rest": {
"Hostname": "*",
"Port": 8701,
"IO": {
"StreamBufferSize": 65536,
"MaxRequests": 1024,
"ReadTimeoutMs": 10000,
"MaxIncomingHeadersSize": 65536,
"EnableKeepAlive": false
},
"Ssl": {
"Enable": false,
"MutuallyAuthenticate": false,
"AcceptInvalidAcertificates": true
},
"Headers": {
"IncludeContentLength": true,
"DefaultHeaders": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "OPTIONS, HEAD, GET, PUT, POST, DELETE, PATCH",
"Access-Control-Allow-Headers": "*",
"Access-Control-Expose-Headers": "",
"Accept": "*/*",
"Accept-Language": "en-US, en",
"Accept-Charset": "ISO-8859-1, utf-8",
"Cache-Control": "no-cache",
"Connection": "close",
"Host": "localhost:8000"
}
},
"AccessControl": {
"DenyList": {},
"PermitList": {},
"Mode": "DefaultPermit"
},
"Debug": {
"AccessControl": false,
"Routing": false,
"Requests": false,
"Responses": false
}
},
"LiteGraph": {
"AdminBearerToken": "litegraphadmin",
"GraphRepositoryFilename": "./docker/postgresql-unused.db",
"Database": {
"Type": "Postgresql",
"Filename": "./docker/postgresql-unused.db",
"InMemory": false,
"Hostname": "postgresql",
"Port": 5432,
"DatabaseName": "litegraph",
"Username": "litegraph",
"Password": "litegraph",
"Schema": "litegraph",
"ConnectionString": null,
"MaxConnections": 32,
"CommandTimeoutSeconds": 30
},
"MaxConcurrentOperations": 4,
"Transactions": {
"MaxOperations": 1000,
"MaxTimeoutSeconds": 60
},
"InMemory": false
},
"Encryption": {
"Key": "0000000000000000000000000000000000000000000000000000000000000000",
"Iv": "00000000000000000000000000000000"
},
"Storage": {
"BackupsDirectory": "./backups/"
},
"Debug": {
"Authentication": false,
"Exceptions": true,
"Requests": false,
"DatabaseQueries": false
},
"RequestHistory": {
"Enable": true,
"MaxRequestBodyBytes": 131072,
"MaxResponseBodyBytes": 131072,
"RetentionDays": 30,
"PurgeIntervalMinutes": 60
},
"Observability": {
"Enable": true,
"EnablePrometheus": true,
"EnableOpenTelemetry": true,
"EnableOtlpExporter": false,
"OtlpEndpoint": null,
"OtlpProtocol": "grpc",
"OtlpHeaders": null,
"OtlpTimeoutMilliseconds": 10000,
"MetricsPath": "/metrics",
"ServiceName": "LiteGraph.Server"
}
}