mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
|
#
|
||
|
# This is the default config file. It allows all users to do anything,
|
||
|
# so don't use it on production systems.
|
||
|
#
|
||
|
# Look here for more config file examples:
|
||
|
# https://github.com/rlidwka/sinopia/tree/master/conf
|
||
|
#
|
||
|
|
||
|
# path to a directory with all packages
|
||
|
storage: ./storage
|
||
|
|
||
|
web:
|
||
|
# web interface is disabled by default in 0.x, will be enabled soon in 1.x
|
||
|
# when all its issues will be fixed
|
||
|
#
|
||
|
# set this to `true` if you want to experiment with web ui now;
|
||
|
# this has a lot of issues, e.g. no auth yet, so use at your own risk
|
||
|
#enable: true
|
||
|
|
||
|
auth:
|
||
|
htpasswd:
|
||
|
file: ./htpasswd
|
||
|
# Maximum amount of users allowed to register, defaults to "+inf".
|
||
|
# You can set this to -1 to disable registration.
|
||
|
#max_users: 1000
|
||
|
|
||
|
# a list of other known repositories we can talk to
|
||
|
uplinks:
|
||
|
npmjs:
|
||
|
url: https://registry.npmjs.org/
|
||
|
|
||
|
packages:
|
||
|
'*':
|
||
|
# allow all users (including non-authenticated users) to read and
|
||
|
# publish all packages
|
||
|
#
|
||
|
# you can specify usernames/groupnames (depending on your auth plugin)
|
||
|
# and three keywords: "$all", "$anonymous", "$authenticated"
|
||
|
allow_access: $authenticated
|
||
|
|
||
|
# allow 'admin' to publish packages
|
||
|
allow_publish: $all
|
||
|
|
||
|
# if package is not available locally, proxy requests to 'npmjs' registry
|
||
|
proxy: npmjs
|
||
|
|
||
|
# log settings
|
||
|
logs:
|
||
|
- {type: stdout, format: pretty, level: http}
|
||
|
#- {type: file, path: sinopia.log, level: info}
|
||
|
|