2014-11-12 10:49:37 -05:00
#
# 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:
2016-08-20 11:46:54 -05:00
# https://github.com/verdaccio/verdaccio/tree/master/conf
2014-11-12 10:49:37 -05:00
#
# path to a directory with all packages
storage : ./storage
2018-07-18 07:53:08 -05:00
# path to a directory with plugins to include
plugins : ./plugins
2014-11-12 10:49:37 -05:00
2018-06-28 11:33:37 -05:00
web :
title : Verdaccio
2019-02-25 01:31:35 -05:00
# comment out to disable gravatar support
# gravatar: false
2019-02-07 15:18:45 -05:00
# by default packages are ordercer ascendant (asc|desc)
# sort_packages: asc
2018-06-28 11:33:37 -05:00
2014-11-12 10:49:37 -05:00
auth :
htpasswd :
file : ./htpasswd
# Maximum amount of users allowed to register, defaults to "+inf".
# You can set this to -1 to disable registration.
2019-02-25 01:31:35 -05:00
# max_users: 1000
2014-11-12 10:49:37 -05:00
# a list of other known repositories we can talk to
uplinks :
npmjs :
url : https://registry.npmjs.org/
packages :
2014-11-16 12:44:46 -05:00
'@*/*' :
# scoped packages
2015-04-08 15:54:59 -05:00
access : $all
publish : $authenticated
2019-02-07 16:04:53 -05:00
unpublish : $authenticated
2016-09-26 06:48:36 -05:00
proxy : npmjs
2014-11-16 12:44:46 -05:00
2016-09-26 06:48:36 -05:00
'**' :
2014-11-12 10:49:37 -05:00
# 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"
2015-04-08 15:54:59 -05:00
access : $all
2014-11-12 10:49:37 -05:00
2019-02-25 01:31:35 -05:00
# allow all known users to publish/publish packages
2014-11-13 13:32:01 -05:00
# (anyone can register by default, remember?)
2015-04-08 15:54:59 -05:00
publish : $authenticated
2019-02-07 16:04:53 -05:00
unpublish : $authenticated
2014-11-12 10:49:37 -05:00
# if package is not available locally, proxy requests to 'npmjs' registry
proxy : npmjs
2019-01-27 04:19:46 -05:00
# You can specify HTTP/1.1 server keep alive timeout in seconds for incomming connections.
# A value of 0 makes the http server behave similarly to Node.js versions prior to 8.0.0, which did not have a keep-alive timeout.
# WORKAROUND: Through given configuration you can workaround following issue https://github.com/verdaccio/verdaccio/issues/301. Set to 0 in case 60 is not enought.
server :
keepAliveTimeout : 60
2018-05-31 03:41:00 -05:00
middlewares :
audit :
enabled : true
2018-05-21 04:28:04 -05:00
2014-11-12 10:49:37 -05:00
# log settings
logs :
2018-08-20 09:31:39 -05:00
- { type: stdout, format: pretty, level : http }
2016-08-20 11:46:54 -05:00
#- {type: file, path: verdaccio.log, level: info}
2019-10-02 13:56:50 -05:00
#experiments:
# # support for npm token command
# token: false