mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
45 lines
794 B
YAML
45 lines
794 B
YAML
|
store:
|
||
|
memory:
|
||
|
limit: 1000
|
||
|
|
||
|
plugins: /verdaccio/plugins
|
||
|
|
||
|
web:
|
||
|
title: Verdaccio Publish Config Test
|
||
|
auth:
|
||
|
auth-memory:
|
||
|
users:
|
||
|
foo:
|
||
|
name: foo
|
||
|
password: s3cret
|
||
|
bar:
|
||
|
name: bar
|
||
|
password: s3cret
|
||
|
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
|
||
|
static-token:
|
||
|
- token: mySecureToken
|
||
|
user: systemUser
|
||
|
password: systemPassword
|
||
|
- token: ABCD1234
|
||
|
user: uncle
|
||
|
password: tom
|
||
|
logs: { type: stdout, format: pretty, level: http }
|