2014-11-12 16:49:37 +01: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 18:46:54 +02:00
# https://github.com/verdaccio/verdaccio/tree/master/conf
2014-11-12 16:49:37 +01:00
#
# path to a directory with all packages
storage : ./storage
2018-07-18 14:53:08 +02:00
# path to a directory with plugins to include
plugins : ./plugins
2014-11-12 16:49:37 +01:00
2018-06-28 18:33:37 +02:00
web :
# WebUI is enabled as default, if you want disable it, just uncomment this line
2018-07-29 18:30:08 +02:00
#enable: false
2018-06-28 18:33:37 +02:00
title : Verdaccio
2014-11-12 16:49:37 +01:00
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
2018-08-21 08:05:34 +02:00
security :
api :
jwt :
sign :
expiresIn : 60d
notBefore : 1
web :
sign :
expiresIn : 7d
2018-08-21 08:10:18 +02:00
notBefore : 1
2018-08-21 08:05:34 +02:00
2014-11-12 16:49:37 +01:00
# a list of other known repositories we can talk to
uplinks :
npmjs :
url : https://registry.npmjs.org/
packages :
2014-11-16 18:44:46 +01:00
'@*/*' :
# scoped packages
2015-04-08 22:54:59 +02:00
access : $all
publish : $authenticated
2016-09-26 13:48:36 +02:00
proxy : npmjs
2014-11-16 18:44:46 +01:00
2016-09-26 13:48:36 +02:00
'**' :
2014-11-12 16:49:37 +01: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 22:54:59 +02:00
access : $all
2014-11-12 16:49:37 +01:00
2014-11-13 19:32:01 +01:00
# allow all known users to publish packages
# (anyone can register by default, remember?)
2015-04-08 22:54:59 +02:00
publish : $authenticated
2014-11-12 16:49:37 +01:00
# if package is not available locally, proxy requests to 'npmjs' registry
proxy : npmjs
2019-01-27 10:19:46 +01: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-21 17:19:18 +02:00
# To use `npm audit` uncomment the following section
2018-05-31 10:41:00 +02:00
middlewares :
audit :
enabled : true
2018-05-21 11:28:04 +02:00
2014-11-12 16:49:37 +01:00
# log settings
logs :
2018-08-20 16:31:39 +02:00
- { type: stdout, format: pretty, level : http }
2016-08-20 18:46:54 +02:00
#- {type: file, path: verdaccio.log, level: info}
2014-11-12 16:49:37 +01:00