Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
Add example for skipping TLS verification
Browse files Browse the repository at this point in the history
  • Loading branch information
DJ Enriquez committed Nov 15, 2016
1 parent 1ecb137 commit 5c215f4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ docker run -d \
djenriquez/vault-ui
```

### Skip TLS Verification
In the case that you need to skip TLS verification, say for self-signed certs, you can run Vault-UI with the environment variable `NODE_TLS_REJECT_UNAUTHORIZED=0`:
```
docker run -d \
-p 8000:8000 \
-e NODE_TLS_REJECT_UNAUTHORIZED=0 \
--name vault-ui \
djenriquez/vault-ui
```

## Development
```sh
npm install
Expand Down

0 comments on commit 5c215f4

Please sign in to comment.