verdaccio/lib/config_def.yaml

85 lines
2.6 KiB
YAML
Raw Normal View History

2013-06-13 16:21:14 +02:00
# path to a directory with all packages
storage: ./storage
2013-09-24 06:27:47 +02:00
# a list of users
2013-06-13 16:21:14 +02:00
users:
admin:
# crypto.createHash('sha1').update(pass).digest('hex')
password: __PASSWORD__
2013-09-24 06:27:47 +02:00
# a list of other known repositories we can talk to
2013-06-13 16:21:14 +02:00
uplinks:
npmjs:
url: https://registry.npmjs.org/
# amount of time to wait for repository to respond
# before giving up and use the local cached copy
#timeout: 30s
# maximum time in which data is considered up to date
2013-10-22 10:34:07 +02:00
#
# default is 2 minutes, so server won't request the same data from
# uplink if a similar request was made less than 2 minutes ago
#maxage: 2m
2013-10-22 10:34:07 +02:00
2014-03-13 19:32:44 +01:00
# if two subsequent requests fail, no further requests will be sent to
# this uplink for five minutes
#max_fails: 2
#fail_timeout: 5m
# timeouts are defined in the same way as nginx, see:
# http://wiki.nginx.org/ConfigNotation
2013-06-13 16:21:14 +02:00
packages:
# uncomment this for packages with "local-" prefix to be available
2013-09-24 06:36:43 +02:00
# for admin only, it's a recommended way of handling private packages
#'local-*':
# allow_access: admin
# allow_publish: admin
# # you can override storage directory for a group of packages this way:
# storage: 'local_storage'
2013-09-24 06:36:43 +02:00
2013-06-14 11:27:08 +02:00
'*':
2013-09-24 06:27:47 +02:00
# allow all users to read packages ('all' is a keyword)
# this includes non-authenticated users
2013-09-24 06:27:47 +02:00
allow_access: all
2013-06-13 16:21:14 +02:00
2013-09-24 06:27:47 +02:00
# allow 'admin' to publish packages
allow_publish: admin
# if package is not available locally, proxy requests to 'npmjs' registry
proxy: npmjs
2013-09-24 06:36:43 +02:00
#####################################################################
# Advanced settings
#####################################################################
# if you use nginx with custom path, use this to override links
#url_prefix: https://dev.company.local/sinopia/
2013-09-24 06:40:46 +02:00
# you can specify listen address (or simply a port)
#listen: localhost:4873
# type: file | stdout | stderr
# level: trace | debug | info | http (default) | warn | error | fatal
#
# parameters for file: name is filename
# {type: 'file', path: 'sinopia.log', level: 'debug'},
#
# parameters for stdout and stderr: format: json | pretty
# {type: 'stdout', format: 'pretty', level: 'debug'},
2013-10-12 16:37:47 +02:00
logs:
- {type: stdout, format: pretty, level: http}
#- {type: file, path: sinopia.log, level: info}
2013-11-24 18:07:54 +01:00
# you can specify proxy used with all requests in wget-like manner here
# (or set up ENV variables with the same name)
#http_proxy: http://something.local/
#https_proxy: https://something.local/
#no_proxy: localhost,127.0.0.1
# maximum size of uploaded json document
# increase it if you have "request entity too large" errors
#max_body_size: 1mb