mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
25 lines
390 B
YAML
25 lines
390 B
YAML
|
storage: ./storage
|
||
|
|
||
|
auth:
|
||
|
htpasswd:
|
||
|
file: ./htpasswd-owner
|
||
|
|
||
|
web:
|
||
|
enable: true
|
||
|
title: verdaccio
|
||
|
|
||
|
log: { type: stdout, format: pretty, level: info }
|
||
|
|
||
|
# TODO: Add test case for $owner access
|
||
|
packages:
|
||
|
'@*/*':
|
||
|
access: $all
|
||
|
publish: $authenticated
|
||
|
unpublish: $authenticated
|
||
|
'**':
|
||
|
access: $all
|
||
|
publish: $authenticated
|
||
|
unpublish: $authenticated
|
||
|
|
||
|
_debug: true
|