mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
33 lines
507 B
YAML
33 lines
507 B
YAML
|
plugins: ./plugins
|
||
|
|
||
|
web:
|
||
|
title: Verdaccio
|
||
|
auth:
|
||
|
htpasswd:
|
||
|
file: ./htpasswd
|
||
|
|
||
|
store:
|
||
|
memory:
|
||
|
limit: 5000
|
||
|
|
||
|
uplinks:
|
||
|
npmjs:
|
||
|
url: https://registry.npmjs.org/
|
||
|
packages:
|
||
|
'@*/*':
|
||
|
access: $all
|
||
|
publish: $authenticated
|
||
|
unpublish: $authenticated
|
||
|
proxy: npmjs
|
||
|
'**':
|
||
|
access: $all
|
||
|
publish: $authenticated
|
||
|
unpublish: $authenticated
|
||
|
proxy: npmjs
|
||
|
server:
|
||
|
keepAliveTimeout: 60
|
||
|
middlewares:
|
||
|
audit:
|
||
|
enabled: true
|
||
|
log: { type: stdout, format: pretty, level: http }
|