mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-17 07:45:52 +01:00
28 lines
434 B
YAML
28 lines
434 B
YAML
|
storage: ./storage
|
||
|
plugins: ./plugins
|
||
|
|
||
|
web:
|
||
|
title: Verdaccio
|
||
|
|
||
|
auth:
|
||
|
htpasswd:
|
||
|
file: ./htpasswd
|
||
|
uplinks:
|
||
|
npmjs:
|
||
|
url: https://registry.npmjs.org/
|
||
|
security:
|
||
|
api:
|
||
|
jwt:
|
||
|
sign:
|
||
|
expiresIn: 10m
|
||
|
notBefore: 0
|
||
|
packages:
|
||
|
'@*/*':
|
||
|
access: $authenticated
|
||
|
publish: $authenticated
|
||
|
'**':
|
||
|
access: $authenticated
|
||
|
publish: $authenticated
|
||
|
logs:
|
||
|
- { type: stdout, format: pretty, level: http }
|