2017-12-16 13:25:59 +01:00
---
id: configuration
title: "Configuration File"
---
2017-08-26 11:32:18 +02:00
This file is the cornerstone of verdaccio where you can modify the default behaviour, enable plugins and extend features.
A default configuration file is created the very first time you run `verdaccio` .
## Default Configuration
The default configuration has support for **scoped** packages and allow any user to access all packages but only **authenticated users to publish** .
2017-08-26 11:35:04 +02:00
```yaml
2017-08-26 11:32:18 +02:00
storage: ./storage
auth:
htpasswd:
file: ./htpasswd
uplinks:
npmjs:
url: https://registry.npmjs.org/
packages:
'@*/*':
access: $all
publish: $authenticated
proxy: npmjs
'**':
proxy: npmjs
logs:
- {type: stdout, format: pretty, level: http}
```
## Sections
2018-01-08 07:28:41 +01:00
The following sections explain what means each property and the different options.
2017-08-26 11:32:18 +02:00
### Storage
Is the location of the default storage. **Verdaccio is by default based on local file system** .
2017-08-26 11:35:04 +02:00
```yaml
2017-08-26 11:32:18 +02:00
storage: ./storage
```
### Authentification
2018-01-08 20:40:36 +01:00
The authentification set up is done here, the default auth is based on `htpasswd` and is built-in. You can modify this behaviour via [plugins ](plugins.md ). For more information about this section read the [auth page ](auth.md ).
2017-08-26 11:32:18 +02:00
2017-08-26 11:35:04 +02:00
```yaml
2017-08-26 11:32:18 +02:00
auth:
htpasswd:
file: ./htpasswd
max_users: 1000
```
### Web UI
This properties allow you to modify the look and feel of the web UI. For more information about this section read the [web ui page ](web.md ).
2017-08-26 11:35:04 +02:00
```yaml
2017-08-26 11:32:18 +02:00
web:
enable: true
title: Verdaccio
logo: logo.png
```
2017-09-27 13:58:41 +02:00
### Uplinks
2017-08-26 11:32:18 +02:00
2017-08-26 11:35:04 +02:00
Uplinks is the ability of the system to fetch packages from remote registries when those packages are not available locally. For more information about this section read the [uplinks page ](uplinks.md ).
2017-08-26 11:32:18 +02:00
2017-08-26 11:35:04 +02:00
```yaml
2017-08-26 11:32:18 +02:00
uplinks:
npmjs:
url: https://registry.npmjs.org/
```
2017-08-26 11:35:04 +02:00
### Packages
Packages allow the user how the packages are gonna be accessed. For more information about this section read the [packages page ](packages.md ).
```yaml
packages:
'@*/*':
access: $all
publish: $authenticated
proxy: npmjs
```
## Advanced Settings
2017-08-26 11:32:18 +02:00
2017-12-16 13:25:59 +01:00
### Offline Publish
2017-08-26 11:32:18 +02:00
2017-08-26 11:35:04 +02:00
By default `verdaccio` does not allow to publish when the client is offline, that behavior can be overridden set it in to *true* .
2017-08-26 11:32:18 +02:00
2017-08-26 11:35:04 +02:00
```yaml
publish:
allow_offline: false
```
2018-01-20 23:00:45 +01:00
< small > Since: `verdaccio@2.3.6` due [#223 ](https://github.com/verdaccio/verdaccio/pull/223 )</ small >
2017-08-26 11:35:04 +02:00
### URL Prefix
```yaml
url_prefix: https://dev.company.local/verdaccio/
```
2018-01-20 23:00:45 +01:00
Since: `verdaccio@2.3.6` due [#197 ](https://github.com/verdaccio/verdaccio/pull/197 )
2017-08-26 11:35:04 +02:00
### Max Body Size
By default the maximum body size for a JSON document is `1mb` , if you run in errors as `"request entity too large"` you may increase this value.
```yaml
max_body_size: 1mb
```
### Listen Port
`verdaccio` runs by default in the port `4873` . Change the port can be done via [cli ](cli.md ) or in the configuration file, the following options are valid.
```yaml
listen:
# - localhost:4873 # default value
# - http://localhost:4873 # same thing
# - 0.0.0.0:4873 # listen on all addresses (INADDR_ANY)
# - https://example.org:4873 # if you want to use https
2018-01-19 21:40:13 +01:00
# - "[::1]:4873" # ipv6
2017-08-26 11:35:04 +02:00
# - unix:/tmp/verdaccio.sock # unix socket
```
### HTTPS
To enable `https` in `verdaccio` enough with set your `listen` domain with the protocol *https://* . For more information about this section read the [ssl page ](ssl.md ).
```yaml
https:
2018-02-16 08:21:40 +01:00
key: ./path/verdaccio-key.pem
cert: ./path/verdaccio-cert.pem
ca: ./path/verdaccio-csr.pem
2017-08-26 11:35:04 +02:00
```
2018-01-24 21:47:23 +01:00
### Proxy
Proxies are special-purpose HTTP servers designed to transfer data from remote servers to local clients.
#### http_proxy and https_proxy
If you have a proxy in your network you can set a `X-Forwarded-For` header using the following properties.
```yaml
http_proxy: http://something.local/
https_proxy: https://something.local/
```
#### no_proxy
This variable should contain a comma-separated list of domain extensions proxy should not be used for.
```yaml
http_proxy: http://something.local/
https_proxy: https://something.local/
```
2017-08-26 11:35:04 +02:00
### Notifications
Enable notifications to three party tools is fairly easy via web hooks. For more information about this section read the [notifications page ](notifications.md ).
```yaml
notify:
method: POST
headers: [{'Content-Type': 'application/json'}]
endpoint: https://usagge.hipchat.com/v2/room/3729485/notification?auth_token=mySecretToken
content: '{"color":"green","message":"New package published: * {{ name }}* ","notify":true,"message_format":"text"}'
```
2017-08-26 11:32:18 +02:00
2018-01-20 23:00:45 +01:00
> For more detailed configuration settings, please [check the source code](https://github.com/verdaccio/verdaccio/tree/master/conf).
2017-08-26 11:32:18 +02:00
2017-12-16 13:25:59 +01:00