@@ -36,13 +36,13 @@ The default configuration file currently contains the following:
36
36
# # API SDK Security options - pick ONE:
37
37
38
38
# Insecure, no encryption, only local connections will be allowed
39
- # security.insecure = {}
39
+ # security = "insecure"
40
40
41
41
# Self-signed CA certificate. Global connections will be allowed, clients
42
42
# on other machines will need a copy of the generated CA Certificate
43
43
#
44
44
# This is the default and recommended option.
45
- # security. tls-self-signed = {}
45
+ # security = " tls-self-signed"
46
46
47
47
# # API SDK Listener options - pick ONE
48
48
@@ -67,13 +67,13 @@ The default configuration file currently contains the following:
67
67
# ## REST API Security options - pick ONE:
68
68
69
69
# Insecure, no encryption, only local connections will be allowed
70
- # security.insecure = {}
70
+ # security = "insecure"
71
71
72
72
# Self-signed CA certificate. Global connections will be allowed, clients
73
73
# on other machines will need a copy of the generated CA Certificate
74
74
#
75
75
# This is the default and recommended option.
76
- # security. tls-self-signed = {}
76
+ # security = " tls-self-signed"
77
77
78
78
# ## Listener options
79
79
# listener.local-only = { port = 4444 } # default
@@ -84,7 +84,7 @@ The default configuration file currently contains the following:
84
84
# This section is used to control local storage options. This section
85
85
# is optional.
86
86
#
87
- # Options for each item are `.unlimited = {} ` to set the storage to be
87
+ # Options for each item are `= "unlimited" ` to set the storage to be
88
88
# unbounded, or `.fifo-megabytes = N`, where N is the (approximate) number
89
89
# of megabytes (specifically mebibytes, N * 1024 * 1024 bytes) to be used
90
90
# for storing data in a first-in first-out basis.
@@ -138,6 +138,18 @@ The default configuration file currently contains the following:
138
138
# if `apis.http` is enabled.
139
139
#
140
140
# unsafe-inhibit-cors = false
141
+
142
+ # # Allowed Bridges
143
+ #
144
+ # This feature enables bridging, allowing for a device to act as a connection
145
+ # to further devices.
146
+ #
147
+ # Acceptable values here are "none", "any", or a list of u64 serial numbers.
148
+ # Defaults to "none"
149
+ #
150
+ # allowed-bridges = "none"
151
+ # allowed-bridges = "any"
152
+ # allowed-bridges.specific = ["27927AE08C5C829B"]
141
153
```
142
154
143
155
## The ` apis ` section
@@ -167,16 +179,16 @@ use the following configuration:
167
179
168
180
``` toml
169
181
[apis .sdk ]
170
- security. tls-self-signed = {}
171
- listener.global = { socket_addr = " 0.0.0.0:51837" }
182
+ security = " tls-self-signed"
183
+ listener.global = { socket_addr = " 0.0.0.0:51837" }
172
184
```
173
185
174
186
If you wanted to serve only locally, with no encryption, you could use
175
187
the following configuration:
176
188
177
189
``` toml
178
190
[apis .sdk ]
179
- security.insecure = {}
191
+ security = " insecure "
180
192
listener.local-only = { port = 51837 }
181
193
```
182
194
@@ -202,16 +214,16 @@ use the following configuration:
202
214
203
215
``` toml
204
216
[apis .http ]
205
- security. tls-self-signed = {}
206
- listener.global = { socket_addr = " 0.0.0.0:4444" }
217
+ security = " tls-self-signed"
218
+ listener.global = { socket_addr = " 0.0.0.0:4444" }
207
219
```
208
220
209
221
If you wanted to serve only locally, with no encryption, you could use
210
222
the following configuration:
211
223
212
224
``` toml
213
225
[apis .http ]
214
- security.insecure = {}
226
+ security = " insecure "
215
227
listener.local-only = { port = 4444 }
216
228
```
217
229
@@ -227,7 +239,7 @@ Each item may be set to "unlimited" storage, for example:
227
239
``` toml
228
240
[storage ]
229
241
# Historical "endpoint" request and response data
230
- endpoints.unlimited = {}
242
+ endpoints = " unlimited "
231
243
```
232
244
233
245
Or be set to "First In, First Out", which deletes data when the storage exceeds
@@ -245,11 +257,35 @@ These flags are experimental, and may be removed at any time.
245
257
246
258
### ` experimental.unsafe-inhibit-cors `
247
259
248
- This flags causes the ` http ` API to emit flags that allow for cross-site requests.
260
+ This flag causes the ` http ` API to emit flags that allow for cross-site requests.
249
261
250
262
This is necessary if you'd like a web browser to interact directly with poststation's REST API.
251
263
252
264
This is NOT recommended, and may expose poststation to malicious website requests.
253
265
254
266
If you are building a web frontend, it is recommended to instead make API requests with your backend,
255
267
and have the web frontend speak to your server, rather than poststation directly.
268
+
269
+ ### ` experimental.allowed-bridges `
270
+
271
+ This flag enables the experimental "bridging" feature, that allows for a postcard-rpc server to proxy
272
+ connections to further devices. Messages to bridged devices will be routed through the bridge device.
273
+
274
+ Bridge devices are responsible for reporting connected devices, and forwarding messages in both directions.
275
+
276
+ This interface is likely to change in breaking ways before stabilizing.
277
+
278
+ Acceptable values here are "none", "any", or a list of u64 serial numbers. Defaults to "none"
279
+
280
+ ``` toml
281
+ # Don't attempt to bridge any connections
282
+ allowed-bridges = " none"
283
+
284
+ # Trust any device that reports as a bridge, and allow for connection
285
+ # to onward devices
286
+ allowed-bridges = " any"
287
+
288
+ # ONLY allow the following devices (specified by serial number in hex form) to act
289
+ # as bridges. Any device reported by these bridges will establish a connection.
290
+ allowed-bridges.specific = [" 27927AE08C5C829B" ]
291
+ ```
0 commit comments