docs: update translations
4.5 KiB
id | title |
---|---|
configuration | Configuration File |
此文件是 Verdaccio 的重要部分, 您可以在其中修改默认行为, 启用插件并扩展功能。
一个默认的配置文件已经在您首次运行 Verdaccio
时创建。
默认配置
默认配置支持 ** 私有(scoped) ** 包, 并允许匿名访问非私有包, 但只有 ** 已登陆用户才能发布包**。
storage: ./storage
auth:
htpasswd:
file: ./htpasswd
uplinks:
npmjs:
url: https://registry.npmjs.org/
packages:
'@*/*':
access: $all
publish: $authenticated
proxy: npmjs
'**':
proxy: npmjs
logs:
- {type: stdout, format: pretty, level: http}
模块
以下各章节解释了每一个选项的作用和可用的值
存储
是默认的存储方式。** Verdaccio 默认使用内置本地文件模式存储 **。
storage: ./storage
认证
The authentification set up is done here, the default auth is based on htpasswd
and is built-in. 您可以通过 插件 修改此行为。 如需了解更多信息,请阅读文档中的 "认证" 部分
auth:
htpasswd:
file: ./htpasswd
max_users: 1000
Web UI
这个选项允许你定制 Web UI 的外观. 如需了解更多信息,请阅读文档中的 "Web UI" 部分.
web:
enable: true
title: Verdaccio
logo: logo.png
Uplinks
通过配置 Uplinks ,Verdaccio 可以从远程的仓库中获取本地尚未缓存的包。 如需了解更多信息,请阅读文档中的 "Uplinks" 部分
uplinks:
npmjs:
url: https://registry.npmjs.org/
包
"包" 部分定义了用户访问仓库中的包的权限。如需了解更多信息,请阅读文档中的 "包" 部分.
packages:
'@*/*':
access: $all
publish: $authenticated
proxy: npmjs
高级设置
离线发布
Verdaccio
默认不允许在与 Uplinks 断开连接后发布任何包,但是通过设置以下选项为 ture 来允许离线发布
publish:
allow_offline: false
Since: verdaccio@2.3.6
due #223
URL 前缀
url_prefix: https://dev.company.local/verdaccio/
Since: verdaccio@2.3.6
due #197
最大 Body 尺寸
默认的 JSON 请求 Body 尺寸为 1MB
,如果你遇到了错误提示 "request entity too large"
,可以尝试增大这个值
max_body_size: 1mb
监听端口
Verdaccio
默认使用 4873
端口. 可以通过 命令行传递参数 或修改配置文件,以下格式是有效的
listen:
# - localhost:4873 # default value
# - http://localhost:4873 # same thing
# - 0.0.0.0:4873 # listen on all addresses (INADDR_ANY)
# - https://example.org:4873 # if you want to use https
# - "[::1]:4873" # ipv6
# - unix:/tmp/verdaccio.sock # unix socket
HTTPS
可通过在 listen
的域名前增加 https:// 并设置证书路径来启用 Verdaccio
的 HTTPS 支持。 如需了解更多信息,请阅读文档中的 "SSL" 部分
https:
key: ./path/verdaccio-key.pem
cert: ./path/verdaccio-cert.pem
ca: ./path/verdaccio-csr.pem
Proxy
Proxies are special-purpose HTTP servers designed to transfer data from remote servers to local clients.
http_proxy and https_proxy
If you have a proxy in your network you can set a X-Forwarded-For
header using the following properties.
http_proxy: http://something.local/
https_proxy: https://something.local/
no_proxy
This variable should contain a comma-separated list of domain extensions proxy should not be used for.
http_proxy: http://something.local/
https_proxy: https://something.local/
Notifications
Enable notifications to three party tools is fairly easy via web hooks. For more information about this section read the notifications page.
notify:
method: POST
headers: [{'Content-Type': 'application/json'}]
endpoint: https://usagge.hipchat.com/v2/room/3729485/notification?auth_token=mySecretToken
content: '{"color":"green","message":"New package published: * {{ name }}*","notify":true,"message_format":"text"}'
For more detailed configuration settings, please check the source code.