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
2020-04-08 16:24:57 -05:00
# convert your UI to the dark side
# darkMode: true
2021-04-10 03:47:15 -05:00
# logo: http://somedomain/somelogo.png
# favicon: http://somedomain/favicon.ico | /path/favicon.ico
2020-04-08 16:24:57 -05:00
# 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 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-10-02 14:14:19 -05:00
# You can specify HTTP/1.1 server keep alive timeout in seconds for incoming connections.
2019-01-27 04:19:46 -05: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 14:14:19 -05: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 04:19:46 -05:00
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
2021-03-30 13:32:46 -05:00
logs : { type: stdout, format: pretty, level : http }
2019-10-02 13:56:50 -05:00
#experiments:
# # support for npm token command
# token: false
2020-06-22 06:33:43 -05:00
# # support for the new v1 search endpoint, functional by incomplete read more on ticket 1732
# search: false
2020-12-02 15:48:01 -05:00
# # disable writing body size to logs, read more on ticket 1912
# bytesin_off: false
2020-03-14 01:16:47 -05:00
# This affect the web and api (not developed yet)
#i18n:
#web: en-US