mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
41 lines
633 B
YAML
41 lines
633 B
YAML
|
storage: ./storage
|
||
|
plugins: ./plugins
|
||
|
|
||
|
web:
|
||
|
title: Verdaccio e2e
|
||
|
auth:
|
||
|
htpasswd:
|
||
|
file: ./htpasswd
|
||
|
uplinks:
|
||
|
verdaccio:
|
||
|
url: https://registry.verdaccio.org/
|
||
|
max_fails: 30
|
||
|
fail_timeout: 10m
|
||
|
timeout: 60s
|
||
|
cache: false
|
||
|
maxage: 30m
|
||
|
|
||
|
packages:
|
||
|
'@*/*':
|
||
|
# scoped packages
|
||
|
access: $all
|
||
|
publish: $authenticated
|
||
|
unpublish: $authenticated
|
||
|
proxy: verdaccio
|
||
|
|
||
|
'**':
|
||
|
access: $all
|
||
|
publish: $authenticated
|
||
|
unpublish: $authenticated
|
||
|
proxy: verdaccio
|
||
|
|
||
|
server:
|
||
|
keepAliveTimeout: 60
|
||
|
|
||
|
middlewares:
|
||
|
audit:
|
||
|
enabled: true
|
||
|
|
||
|
logs:
|
||
|
- { type: stdout, format: pretty, level: warn }
|