0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-28 08:48:19 +02:00

traefik example

This commit is contained in:
Joel Kåberg 2018-09-14 23:22:38 +02:00 committed by GitHub
parent b75ba216d1
commit ee321be579
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,4 +77,19 @@ server {
ProxyPreserveHost On
ProxyRequests Off
</VirtualHost>
```
```
## Traefik (docker-compose example)
```traefik
labels:
- 'traefik.frontend.rule=Host:vault.example.local'
- 'traefik.docker.network=traefik'
- 'traefik.port=80'
- 'traefik.enable=true'
- 'traefik.web.frontend.rule=Host:vault.example.local'
- 'traefik.web.port=80'
- 'traefik.hub.frontend.rule=Path:/notifications/hub'
- 'traefik.hub.port=3012'
- 'traefik.negotiate.frontend.rule=Path:/notifications/hub/negotiate'
- 'traefik.negotiate.port=80'
```