grammar/spelling/updates
This commit is contained in:
parent
122afc4168
commit
f05a07a32e
1 changed files with 11 additions and 11 deletions
|
@ -1,10 +1,10 @@
|
||||||
# Configurable settings for the LBRY daemon
|
# Configurable settings for the LBRY daemon
|
||||||
|
|
||||||
This document outlines how to configure daemon settings and what options are available. They can be found on the lbry GitHub reposition in [conf.py](https://github.com/lbryio/lbry/blob/master/lbrynet/conf.py).
|
This document outlines how to configure daemon settings and what options are available. They can be found on the lbry GitHub repository in [conf.py](https://github.com/lbryio/lbry/blob/master/lbrynet/conf.py).
|
||||||
|
|
||||||
## Daemon settings configuration
|
## Daemon settings configuration
|
||||||
|
|
||||||
The easiest way to configure the settings is via the `daemon_settings.yml` in the default [lbrynet directory](https://lbry.io/faq/lbry-directories). These settings will also be made available (currently only a few are) via the [settings_set](https://lbry.tech/api/protocol#settings_set).
|
The easiest way to configure the settings is by editing the `daemon_settings.yml` file (may need to be created) that resides in the default [lbrynet directory](https://lbry.io/faq/lbry-directories). These settings can also be configured via the [settings_set](https://lbry.tech/api/protocol#settings_set) API call. The [settings_get](https://lbry.tech/api/protocol#settings_get) API call can be used to retrieve current values. Currently not all settings are made available via the API calls, see [GitHub issue 1374](https://github.com/lbryio/lbry/issues/1374).
|
||||||
|
|
||||||
Sample daemon_settings.yml file:
|
Sample daemon_settings.yml file:
|
||||||
```
|
```
|
||||||
|
@ -15,7 +15,7 @@ use_upnp: false
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configuration options
|
## Configuration options
|
||||||
Cofiguration options are separted by their respective areas: Files, Wallet, Network, Security and Other.
|
Configuration options are organized by their respective areas: Files, Wallet, Network, Security and Other.
|
||||||
|
|
||||||
### Files
|
### Files
|
||||||
| Setting | Format | Default value | Sample Values | Description |
|
| Setting | Format | Default value | Sample Values | Description |
|
||||||
|
@ -28,13 +28,13 @@ Cofiguration options are separted by their respective areas: Files, Wallet, Netw
|
||||||
| Setting | Format | Default value | Sample Values | Description |
|
| Setting | Format | Default value | Sample Values | Description |
|
||||||
|-------------------------------|---------|------------------------------------------------------|------------------------------------|---------------------------------------------------------------------------------------------------|
|
|-------------------------------|---------|------------------------------------------------------|------------------------------------|---------------------------------------------------------------------------------------------------|
|
||||||
| auto_renew_claim_height_delta | integer | 0 | 1000 | If your claim is X blocks away, auto renew it. |
|
| auto_renew_claim_height_delta | integer | 0 | 1000 | If your claim is X blocks away, auto renew it. |
|
||||||
|
| blockchain_name | string | 'lbrycrd_main' | 'lbrycrd_regtest' | Blockchain network to connect to |
|
||||||
|
| disable_max_key_fee | boolean | FALSE | TRUE | If disabled, don't check for max fee |
|
||||||
|
| lbryum_servers | list | ['lbryumx1.lbry.io:50001','lbryumx2.lbry.io:50001'] | ["mylbryum.lbry.io:50001] | SPV wallet server address |
|
||||||
| lbryum_wallet_dir | string | [varies by OS](https://lbry.io/faq/lbry-directories) | 'c:\lbry\lbryum\' | Wallet data location |
|
| lbryum_wallet_dir | string | [varies by OS](https://lbry.io/faq/lbry-directories) | 'c:\lbry\lbryum\' | Wallet data location |
|
||||||
| max_key_fee | json | {'currency': 'USD', 'amount': 50.0} | {'currency': 'LBC', 'amount': 5.0} | Max payment allowed for content |
|
| max_key_fee | json | {'currency': 'USD', 'amount': 50.0} | {'currency': 'LBC', 'amount': 5.0} | Max payment allowed for content |
|
||||||
| disable_max_key_fee | boolean | FALSE | TRUE | If disabled, don't check for max fee |
|
|
||||||
| use_keyring | boolean | FALSE | TRUE | Store wallet password in keyring |
|
|
||||||
| wallet | string | 'lbryum' | 'lbrycrd' | Choice of wallet software, SPV (lbryum) vs full node (lbrycrd). Currently only lbryum supported |
|
| wallet | string | 'lbryum' | 'lbrycrd' | Choice of wallet software, SPV (lbryum) vs full node (lbrycrd). Currently only lbryum supported |
|
||||||
| blockchain_name | string | 'lbrycrd_main' | 'lbrycrd_regtest' | Blockchain network to connect to |
|
| use_keyring | boolean | FALSE | TRUE | Store wallet password in keyring |
|
||||||
| lbryum_servers | list | ['lbryumx1.lbry.io:50001','lbryumx2.lbry.io:50001'] | ["mylbryum.lbry.io:50001] | SPV wallet address |
|
|
||||||
|
|
||||||
### Network
|
### Network
|
||||||
| Setting | Format | Default value | Sample Values | Description |
|
| Setting | Format | Default value | Sample Values | Description |
|
||||||
|
@ -72,5 +72,5 @@ Cofiguration options are separted by their respective areas: Files, Wallet, Netw
|
||||||
### Other
|
### Other
|
||||||
| Setting | Format | Default value | Sample Values | Description |
|
| Setting | Format | Default value | Sample Values | Description |
|
||||||
|--------------------|---------|---------------|--------------------------------|---------------------------------------------------------------------------------------------------------------|
|
|--------------------|---------|---------------|--------------------------------|---------------------------------------------------------------------------------------------------------------|
|
||||||
| share_usage_data | boolean | TRUE | FALSE | Share analytics data |
|
|
||||||
| components_to_skip | list | [] | ['reflector','hash_announcer'] | Disabe components, [see entire list here](https://github.com/lbryio/lbry/wiki/Component-Dependencies-Table) |
|
| components_to_skip | list | [] | ['reflector','hash_announcer'] | Disabe components, [see entire list here](https://github.com/lbryio/lbry/wiki/Component-Dependencies-Table) |
|
||||||
|
| share_usage_data | boolean | TRUE | FALSE | Share analytics data |
|
||||||
|
|
Loading…
Add table
Reference in a new issue