-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathexample_config.yaml
More file actions
22 lines (19 loc) · 969 Bytes
/
example_config.yaml
File metadata and controls
22 lines (19 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# A list of Convergence Layer Adapters (CLAs) to enable.
clas:
- # A user-defined name for this CLA instance.
name: "my-file-cla"
# Specifies the type of CLA. For this case, it's "file-cla".
type: "file-cla"
# Configuration specific to the file-cla.
config:
# The directory to watch for new files to be sent as bundles.
# Each file in this directory is treated as a complete bundle and will be
# dispatched to the BPA. After dispatch, the file is deleted.
# This is optional. If not specified, the CLA will only be able to receive bundles.
outbox: "/var/spool/hardy/outbox"
# A map of peer Endpoint IDs (EIDs) to their corresponding inbox directories.
# When a bundle is to be forwarded to a peer, it will be written as a file
# in the directory associated with that peer's EID.
peers:
"ipn:0.1.0": "/var/spool/hardy/peer1-inbox"
"ipn:0.2.0": "/var/spool/hardy/peer2-inbox"