Continued additions to config doc format
This commit is contained in:
parent
cf1ca2dcba
commit
f70303a47e
@ -15,7 +15,7 @@ and the `veilid-server.conf` file.
|
|||||||
## Global Directives
|
## Global Directives
|
||||||
|
|
||||||
| Directive | Description |
|
| Directive | Description |
|
||||||
|-------------------------------|---------------------------------------------------|
|
|-------------------------------|-----------------------------------------|
|
||||||
| [daemon](#daemon) | Run `veilid-server` in the background |
|
| [daemon](#daemon) | Run `veilid-server` in the background |
|
||||||
| [client\_api](#client_api) ||
|
| [client\_api](#client_api) ||
|
||||||
| [auto\_attach](#auto_attach) ||
|
| [auto\_attach](#auto_attach) ||
|
||||||
@ -40,15 +40,15 @@ client_api:
|
|||||||
```
|
```
|
||||||
|
|
||||||
| Parameter | Description |
|
| Parameter | Description |
|
||||||
|-------------------------------------|-------------|
|
|-----------------------------------------------|-------------|
|
||||||
| [enabled](#enabled) ||
|
| [enabled](#client_apienabled) ||
|
||||||
| [listen\_address](#listen_address) ||
|
| [listen\_address](#client_apilisten_address) ||
|
||||||
|
|
||||||
#### enabled
|
#### client\_api:enabled
|
||||||
|
|
||||||
**TODO**
|
**TODO**
|
||||||
|
|
||||||
#### listen\_address
|
#### client\_api:listen\_address
|
||||||
|
|
||||||
**TODO**
|
**TODO**
|
||||||
|
|
||||||
@ -82,6 +82,57 @@ logging:
|
|||||||
grpc_endpoint: 'localhost:4317'
|
grpc_endpoint: 'localhost:4317'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
| Parameter | Description |
|
||||||
|
|-------------------------------|-------------|
|
||||||
|
| [system](#loggingsystem) ||
|
||||||
|
| [terminal](#loggingterminal) ||
|
||||||
|
| [file](#loggingfile) ||
|
||||||
|
| [api](#loggingapi) ||
|
||||||
|
| [otlp](#loggingotlp) ||
|
||||||
|
|
||||||
|
#### logging:system
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
system:
|
||||||
|
enabled: false
|
||||||
|
level: 'info'
|
||||||
|
```
|
||||||
|
|
||||||
|
#### logging:terminal
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
terminal:
|
||||||
|
enabled: true
|
||||||
|
level: 'info'
|
||||||
|
```
|
||||||
|
|
||||||
|
#### logging:file
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
file:
|
||||||
|
enabled: false
|
||||||
|
path: ''
|
||||||
|
append: true
|
||||||
|
level: 'info'
|
||||||
|
```
|
||||||
|
|
||||||
|
#### logging:api
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
api:
|
||||||
|
enabled: true
|
||||||
|
level: 'info'
|
||||||
|
```
|
||||||
|
|
||||||
|
#### logging:otlp
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
otlp:
|
||||||
|
enabled: false
|
||||||
|
level: 'trace'
|
||||||
|
grpc_endpoint: 'localhost:4317'
|
||||||
|
```
|
||||||
|
|
||||||
### testing
|
### testing
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@ -91,19 +142,42 @@ testing:
|
|||||||
|
|
||||||
### core
|
### core
|
||||||
|
|
||||||
|
| Parameter | Description |
|
||||||
|
|-------------------------------------------|-------------|
|
||||||
|
| [protected\_store](#coreprotected_store) ||
|
||||||
|
| [table\_store](#coretable_store) ||
|
||||||
|
| [block\_store](#block_store) ||
|
||||||
|
| [network](#corenetwork) ||
|
||||||
|
|
||||||
|
#### core:protected\_store
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
core:
|
|
||||||
protected_store:
|
protected_store:
|
||||||
allow_insecure_fallback: true
|
allow_insecure_fallback: true
|
||||||
always_use_insecure_storage: true
|
always_use_insecure_storage: true
|
||||||
insecure_fallback_directory: '%INSECURE_FALLBACK_DIRECTORY%'
|
insecure_fallback_directory: '%INSECURE_FALLBACK_DIRECTORY%'
|
||||||
delete: false
|
delete: false
|
||||||
|
```
|
||||||
|
|
||||||
|
#### core:table\_store
|
||||||
|
|
||||||
|
```yaml
|
||||||
table_store:
|
table_store:
|
||||||
directory: '%TABLE_STORE_DIRECTORY%'
|
directory: '%TABLE_STORE_DIRECTORY%'
|
||||||
delete: false
|
delete: false
|
||||||
|
```
|
||||||
|
|
||||||
|
#### core:block\_store
|
||||||
|
|
||||||
|
```yaml
|
||||||
block_store:
|
block_store:
|
||||||
directory: '%BLOCK_STORE_DIRECTORY%'
|
directory: '%BLOCK_STORE_DIRECTORY%'
|
||||||
delete: false
|
delete: false
|
||||||
|
```
|
||||||
|
|
||||||
|
#### core:network
|
||||||
|
|
||||||
|
```yaml
|
||||||
network:
|
network:
|
||||||
connection_initial_timeout_ms: 2000
|
connection_initial_timeout_ms: 2000
|
||||||
connection_inactivity_timeout_ms: 60000
|
connection_inactivity_timeout_ms: 60000
|
||||||
@ -118,12 +192,36 @@ core:
|
|||||||
node_id_secret: ''
|
node_id_secret: ''
|
||||||
bootstrap: ['bootstrap.dev.veilid.net']
|
bootstrap: ['bootstrap.dev.veilid.net']
|
||||||
bootstrap_nodes: []
|
bootstrap_nodes: []
|
||||||
|
upnp: true
|
||||||
|
natpmp: false
|
||||||
|
detect_address_changes: true
|
||||||
|
enable_local_peer_scope: false
|
||||||
|
restricted_nat_retries: 0
|
||||||
|
```
|
||||||
|
|
||||||
|
| Parameter | Description |
|
||||||
|
|---------------------------------------------|-------------|
|
||||||
|
| [routing\_table](#corenetworkrouting_table) ||
|
||||||
|
| [rpc](#corenetworkrpc) ||
|
||||||
|
| [dht](#corenetworkdht) ||
|
||||||
|
| [tls](#corenetworktls) ||
|
||||||
|
| [application](#corenetworkapplication) ||
|
||||||
|
| [protocol](#corenetworkprotocol) ||
|
||||||
|
|
||||||
|
#### core:network:routing\_table
|
||||||
|
|
||||||
|
```yaml
|
||||||
routing_table:
|
routing_table:
|
||||||
limit_over_attached: 64
|
limit_over_attached: 64
|
||||||
limit_fully_attached: 32
|
limit_fully_attached: 32
|
||||||
limit_attached_strong: 16
|
limit_attached_strong: 16
|
||||||
limit_attached_good: 8
|
limit_attached_good: 8
|
||||||
limit_attached_weak: 4
|
limit_attached_weak: 4
|
||||||
|
```
|
||||||
|
|
||||||
|
#### core:network:rpc
|
||||||
|
|
||||||
|
```yaml
|
||||||
rpc:
|
rpc:
|
||||||
concurrency: 0
|
concurrency: 0
|
||||||
queue_size: 1024
|
queue_size: 1024
|
||||||
@ -131,6 +229,11 @@ core:
|
|||||||
max_timestamp_ahead_ms: 10000
|
max_timestamp_ahead_ms: 10000
|
||||||
timeout_ms: 10000
|
timeout_ms: 10000
|
||||||
max_route_hop_count: 7
|
max_route_hop_count: 7
|
||||||
|
```
|
||||||
|
|
||||||
|
#### core:network:dht
|
||||||
|
|
||||||
|
```yaml
|
||||||
dht:
|
dht:
|
||||||
resolve_node_timeout:
|
resolve_node_timeout:
|
||||||
resolve_node_count: 20
|
resolve_node_count: 20
|
||||||
@ -145,15 +248,20 @@ core:
|
|||||||
min_peer_count: 20
|
min_peer_count: 20
|
||||||
min_peer_refresh_time_ms: 2000
|
min_peer_refresh_time_ms: 2000
|
||||||
validate_dial_info_receipt_time_ms: 2000
|
validate_dial_info_receipt_time_ms: 2000
|
||||||
upnp: true
|
```
|
||||||
natpmp: false
|
|
||||||
detect_address_changes: true
|
#### core:network:tls
|
||||||
enable_local_peer_scope: false
|
|
||||||
restricted_nat_retries: 0
|
```yaml
|
||||||
tls:
|
tls:
|
||||||
certificate_path: '%CERTIFICATE_PATH%'
|
certificate_path: '%CERTIFICATE_PATH%'
|
||||||
private_key_path: '%PRIVATE_KEY_PATH%'
|
private_key_path: '%PRIVATE_KEY_PATH%'
|
||||||
connection_initial_timeout_ms: 2000
|
connection_initial_timeout_ms: 2000
|
||||||
|
```
|
||||||
|
|
||||||
|
#### core:network:application
|
||||||
|
|
||||||
|
```yaml
|
||||||
application:
|
application:
|
||||||
https:
|
https:
|
||||||
enabled: false
|
enabled: false
|
||||||
@ -165,6 +273,11 @@ core:
|
|||||||
listen_address: ':5150'
|
listen_address: ':5150'
|
||||||
path: 'app'
|
path: 'app'
|
||||||
# url: 'http://localhost:5150'
|
# url: 'http://localhost:5150'
|
||||||
|
```
|
||||||
|
|
||||||
|
#### core:network:protocol
|
||||||
|
|
||||||
|
```yaml
|
||||||
protocol:
|
protocol:
|
||||||
udp:
|
udp:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user