2016-05-09 12:19:35 -05:00
#
2017-06-21 22:56:39 -05:00
# This is the config file used for the docker images.
# It allows all users to do anything, so don't use it on production systems.
#
# Do not configure host and port under `listen` in this file
# as it will be ignored when using docker.
2018-09-28 12:14:20 -05:00
# see https://verdaccio.org/docs/en/docker#docker-and-custom-port-configuration
2016-05-09 12:19:35 -05:00
#
# Look here for more config file examples:
2016-11-07 12:15:38 -05:00
# https://github.com/verdaccio/verdaccio/tree/master/conf
2016-05-09 12:19:35 -05:00
#
# path to a directory with all packages
2018-07-25 11:48:26 -05:00
storage : /verdaccio/storage/data
2018-07-18 07:53:08 -05:00
# path to a directory with plugins to include
plugins : /verdaccio/plugins
2016-05-09 12:19:35 -05:00
2018-06-28 11:33:37 -05:00
web :
# WebUI is enabled as default, if you want disable it, just uncomment this line
2018-07-29 11:30:08 -05:00
#enable: false
2018-06-28 11:33:37 -05:00
title : Verdaccio
2019-02-25 01:31:35 -05:00
# comment out to disable gravatar support
# gravatar: false
# by default packages are ordercer ascendant (asc|desc)
# sort_packages: asc
2020-04-08 16:24:57 -05:00
# 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 11:33:37 -05:00
2016-05-09 12:19:35 -05:00
auth :
htpasswd :
2018-07-25 11:48:26 -05:00
file : /verdaccio/storage/htpasswd
2017-08-28 09:42:26 -05:00
# Maximum amount of users allowed to register, defaults to "+infinity".
2016-05-09 12:19:35 -05:00
# You can set this to -1 to disable registration.
2019-02-25 01:31:35 -05:00
# max_users: 1000
2016-05-09 12:19:35 -05:00
# a list of other known repositories we can talk to
uplinks :
npmjs :
url : https://registry.npmjs.org/
packages :
'@*/*' :
# scoped packages
access : $all
2017-08-02 13:46:06 -05:00
publish : $authenticated
2019-02-25 01:31:35 -05:00
unpublish : $authenticated
2016-09-26 06:48:36 -05:00
proxy : npmjs
2016-05-09 12:19:35 -05:00
2016-09-26 06:48:36 -05:00
'**' :
2016-05-09 12:19:35 -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"
access : $all
2019-02-25 01:31:35 -05:00
# allow all known users to publish/publish packages
2016-05-09 12:19:35 -05:00
# (anyone can register by default, remember?)
2017-08-02 13:46:06 -05:00
publish : $authenticated
2019-02-25 01:31:35 -05:00
unpublish : $authenticated
2016-05-09 12:19:35 -05:00
# if package is not available locally, proxy requests to 'npmjs' registry
proxy : npmjs
2021-03-29 05:32:37 -05:00
# You can specify HTTP/1.1 server keep alive timeout in seconds for incoming 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 enough.
server :
keepAliveTimeout : 60
2018-05-31 03:41:00 -05:00
middlewares :
audit :
enabled : true
2018-05-23 14:57:09 -05:00
2016-05-09 12:19:35 -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-03-14 02:28:40 -05:00
# This affect the web and api (not developed yet)
#i18n:
#web: en-US