mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-21 07:29:37 +01:00
Merge branch 'feature-release' of github.com:verdaccio/verdaccio into feature-release
This commit is contained in:
commit
bd665ad999
@ -22,7 +22,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Anonymous publish
|
||||
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages acces](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Eg:
|
||||
|
||||
@ -37,7 +37,8 @@ As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/21
|
||||
|
||||
## Default htpasswd
|
||||
|
||||
In order to simplify the setup, `verdaccio` use a build-in plugin based on `htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd)
|
||||
is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -112,10 +112,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### Max Body Size
|
||||
|
||||
By default the maximum body size for a JSON document is `1mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Listen Port
|
||||
|
@ -3,7 +3,7 @@ id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding
|
||||
endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Anonymous publish
|
||||
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages acces](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Eg:
|
||||
|
||||
@ -36,7 +36,7 @@ As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/21
|
||||
|
||||
## Default htpasswd
|
||||
|
||||
In order to simplify the setup, `verdaccio` use a build-in plugin based on `htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### Max Body Size
|
||||
|
||||
By default the maximum body size for a JSON document is `1mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Listen Port
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Anonymous publish
|
||||
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages acces](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Eg:
|
||||
|
||||
@ -36,7 +36,7 @@ As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/21
|
||||
|
||||
## Default htpasswd
|
||||
|
||||
In order to simplify the setup, `verdaccio` use a build-in plugin based on `htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### Max Body Size
|
||||
|
||||
By default the maximum body size for a JSON document is `1mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Listen Port
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Publicar anonimamente
|
||||
|
||||
`verdaccio` te permite habilitar publicar de manera anónima, para conseguirlo necesitarás configurar correctamente el [acceso de paquetes](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Por ejemplo:
|
||||
|
||||
@ -36,7 +36,7 @@ Como se describe en [el ticket #212](https://github.com/verdaccio/verdaccio/issu
|
||||
|
||||
## Htpasswd por defecto
|
||||
|
||||
Con el fin de simplificar la instalación, `verdaccio` usa una extensión por defecto basada en ` htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Desde: `verdaccio@2.3.6` debido a [#197](https://github.com/verdaccio/verdaccio/
|
||||
|
||||
### Tamaño Máximo del Cuerpo
|
||||
|
||||
Por defecto el tamaño máximo cuerpo para un documento JSON es ` 1mb`, si un problema similar a `"request entity too large"` te podrá interesar aumentar este valor.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Puertos
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Anonymous publish
|
||||
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages acces](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Eg:
|
||||
|
||||
@ -36,7 +36,7 @@ As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/21
|
||||
|
||||
## Default htpasswd
|
||||
|
||||
In order to simplify the setup, `verdaccio` use a build-in plugin based on `htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### Max Body Size
|
||||
|
||||
By default the maximum body size for a JSON document is `1mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Listen Port
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Anonymous publish
|
||||
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages acces](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Eg:
|
||||
|
||||
@ -36,7 +36,7 @@ As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/21
|
||||
|
||||
## Default htpasswd
|
||||
|
||||
In order to simplify the setup, `verdaccio` use a build-in plugin based on `htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### Max Body Size
|
||||
|
||||
By default the maximum body size for a JSON document is `1mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Listen Port
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Anonymous publish
|
||||
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages acces](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Eg:
|
||||
|
||||
@ -36,7 +36,7 @@ As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/21
|
||||
|
||||
## Default htpasswd
|
||||
|
||||
In order to simplify the setup, `verdaccio` use a build-in plugin based on `htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### Max Body Size
|
||||
|
||||
By default the maximum body size for a JSON document is `1mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Listen Port
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Anonymous publish
|
||||
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages acces](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Eg:
|
||||
|
||||
@ -36,7 +36,7 @@ As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/21
|
||||
|
||||
## Default htpasswd
|
||||
|
||||
In order to simplify the setup, `verdaccio` use a build-in plugin based on `htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### Max Body Size
|
||||
|
||||
By default the maximum body size for a JSON document is `1mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Listen Port
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### Anonymous publish
|
||||
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages acces](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
Eg:
|
||||
|
||||
@ -36,7 +36,7 @@ As is described [on issue #212](https://github.com/verdaccio/verdaccio/issues/21
|
||||
|
||||
## Default htpasswd
|
||||
|
||||
In order to simplify the setup, `verdaccio` use a build-in plugin based on `htpasswd`.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### Max Body Size
|
||||
|
||||
By default the maximum body size for a JSON document is `1mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### Listen Port
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
@ -21,7 +21,7 @@ registry=http://localhost:5555/
|
||||
|
||||
#### 匿名发布包
|
||||
|
||||
`Verdaccio` 提供了匿名发布功能, 使用此功能需要正确配置 [包访问权限](packages.md).
|
||||
`verdaccio`allows you to enable anonymous publish, to achieve that you will need to set up correctly your [packages access](packages.md).
|
||||
|
||||
例如:
|
||||
|
||||
@ -36,7 +36,7 @@ registry=http://localhost:5555/
|
||||
|
||||
## 默认 htpasswd
|
||||
|
||||
为了简化安装配置步骤, `Verdaccio` 提供了一个基于 `htpasswd` 的内置认证插件.
|
||||
In order to simplify the setup, `verdaccio` use a plugin based on `htpasswd`. As of version v3.0.0-beta.x an [external plugin](https://github.com/verdaccio/verdaccio-htpasswd) is used by default. The v2.x version of this package still contains the built-in version of this plugin.
|
||||
|
||||
```yaml
|
||||
auth:
|
||||
|
@ -108,10 +108,10 @@ Since: `verdaccio@2.3.6` due [#197](https://github.com/verdaccio/verdaccio/pull/
|
||||
|
||||
### 最大 Body 尺寸
|
||||
|
||||
默认的 JSON 请求 Body 尺寸为 `1MB`,如果你遇到了错误提示 `"request entity too large"` ,可以尝试增大这个值
|
||||
By default the maximum body size for a JSON document is `10mb`, if you run in errors as `"request entity too large"` you may increase this value.
|
||||
|
||||
```yaml
|
||||
max_body_size: 1mb
|
||||
max_body_size: 10mb
|
||||
```
|
||||
|
||||
### 监听端口
|
||||
|
@ -2,7 +2,7 @@
|
||||
id: plugins
|
||||
title: "Plugins"
|
||||
---
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentifications methods, adding endpoints or using a custom storage.
|
||||
Verdaccio is an plugabble aplication. It can be extended in many ways, either new authentication methods, adding endpoints or using a custom storage.
|
||||
|
||||
> If you are interested to develop your own plugin, read the [development](development.md) section.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user