mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-04-01 02:42:23 -05:00
(doc): Update uplink documentation
This commit is contained in:
parent
3618508640
commit
09b8c73e47
1 changed files with 12 additions and 7 deletions
|
@ -18,14 +18,19 @@ uplinks:
|
|||
|
||||
You can define mutiple uplinks and each of them must have an unique name (key). They can have two properties:
|
||||
|
||||
Property | Type | Required | Example | Support | Description
|
||||
--- | --- | --- | --- | --- | ---
|
||||
url | string | Yes | https://registry.npmjs.org/ | all | The registry url
|
||||
timeout | string | No | 100ms | all | set new timeout
|
||||
cache | boolean | No |[true,false] | >= 2.1 | avoid cache tarballs
|
||||
Property | Type | Required | Example | Support | Description | Default
|
||||
--- | --- | --- | --- | --- | --- | ---
|
||||
url | string | Yes | https://registry.npmjs.org/ | all | The registry url |
|
||||
timeout | string | No | 100ms | all | set new timeout for the request | 30s
|
||||
maxage | string | No |10m | all | limit maximun failure request | 2m
|
||||
fail_timeout | string | No |10m | all | defines max time when a request becomes a failure | 5m
|
||||
max_fails | number | No |2 | all | limit maximun failure request | 2
|
||||
cache | boolean | No |[true,false] | >= 2.1 | avoid cache tarballs | true
|
||||
|
||||
|
||||
### You Must know
|
||||
|
||||
* Add uplinks might slow down the lookup of your packages.
|
||||
* Uplinks must be registries compatible with the `npm` endpoints. Eg: *verdaccio*, *sinopia@1.4.0*, *npmjs registry*, *yarn registry* and more.
|
||||
* Setting `cache` to false will help to save space in your hard drive.
|
||||
* Setting `cache` to false will help to save space in your hard drive.
|
||||
* Exceed with multiple uplinks might slow down the lookup of your packages due for each request a npm client does, verdaccio does 1 call for each uplink.
|
||||
* The (timeout, maxage and fail_timeout) format follow the [NGINX measurement units](http://nginx.org/en/docs/syntax.html)
|
||||
|
|
Loading…
Add table
Reference in a new issue