2014-11-12 18:49:37 +03: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 18:49:37 +03: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 18:49:37 +03:00
2018-06-28 18:33:37 +02:00
web :
title : Verdaccio
2019-02-25 07:31:35 +01:00
# comment out to disable gravatar support
# gravatar: false
2019-02-07 21:18:45 +01:00
# by default packages are ordercer ascendant (asc|desc)
# sort_packages: asc
2020-04-08 23:24:57 +02:00
# convert your UI to the dark side
# darkMode: true
# translate your registry, api i18n not available yet
# i18n:
# list of the available translations https://github.com/verdaccio/ui/tree/master/i18n/translations
# web: en-US
2018-06-28 18:33:37 +02:00
2014-11-12 18:49:37 +03: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 07:31:35 +01:00
# max_users: 1000
2014-11-12 18:49:37 +03:00
# a list of other known repositories we can talk to
uplinks :
npmjs :
url : https://registry.npmjs.org/
packages :
2014-11-16 20:44:46 +03:00
'@*/*' :
# scoped packages
2015-04-08 23:54:59 +03:00
access : $all
publish : $authenticated
2019-02-07 22:04:53 +01:00
unpublish : $authenticated
2016-09-26 06:48:36 -05:00
proxy : npmjs
2014-11-16 20:44:46 +03:00
2016-09-26 06:48:36 -05:00
'**' :
2014-11-12 18:49:37 +03: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 23:54:59 +03:00
access : $all
2014-11-12 18:49:37 +03:00
2019-02-25 07:31:35 +01:00
# allow all known users to publish/publish packages
2014-11-13 21:32:01 +03:00
# (anyone can register by default, remember?)
2015-04-08 23:54:59 +03:00
publish : $authenticated
2019-02-07 22:04:53 +01:00
unpublish : $authenticated
2014-11-12 18:49:37 +03:00
# if package is not available locally, proxy requests to 'npmjs' registry
proxy : npmjs
2019-10-02 21:14:19 +02:00
# You can specify HTTP/1.1 server keep alive timeout in seconds for incoming connections.
2019-01-27 10:19:46 +01:00
# 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.
2019-10-02 21:14:19 +02:00
# WORKAROUND: Through given configuration you can workaround following issue https://github.com/verdaccio/verdaccio/issues/301. Set to 0 in case 60 is not enough.
2019-01-27 10:19:46 +01:00
server :
keepAliveTimeout : 60
2018-05-31 10:41:00 +02:00
middlewares :
audit :
enabled : true
2018-05-21 11:28:04 +02:00
2014-11-12 18:49:37 +03:00
# log settings
logs :
2018-08-20 16:31:39 +02: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 20:56:50 +02:00
#experiments:
# # support for npm token command
# token: false
2020-06-22 13:33:43 +02:00
# # support for the new v1 search endpoint, functional by incomplete read more on ticket 1732
# search: false
2020-03-14 07:16:47 +01:00
# This affect the web and api (not developed yet)
#i18n:
#web: en-US