mirror of
https://github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin.git
synced 2026-07-21 19:48:59 +02:00
* 📝 Clean documentation in Readme * 📝 Update readme * 📝 Place exemples in seperated README * ⬆️ Update traefik to 2.9.6 and crowdsec to 1.4.3 in exemples * 📝 Add exemple at the right place
22 lines
773 B
Markdown
22 lines
773 B
Markdown
# Exemple
|
|
## Behind another proxy service (ex: clouflare)
|
|
|
|
You need to configure your Traefik to trust Forwarded headers by your front proxy
|
|
In the example we use another instance of traefik with the container named cloudflare to simulate a front proxy
|
|
|
|
The "internal" Traefik instance is configured to trust the cloudflare forward headers
|
|
This helps Traefik choose the right IP of the client: see https://doc.traefik.io/traefik/routing/entrypoints/#forwarded-headers
|
|
```yaml
|
|
- "--entrypoints.web.forwardedheaders.trustedips=172.21.0.5"
|
|
```
|
|
|
|
We configure the middleware to trust as well the IP:
|
|
```yaml
|
|
- "traefik.http.middlewares.crowdsec1.plugin.bouncer.forwardedheaderstrustedips=172.21.0.5"
|
|
```
|
|
|
|
To play the demo environment run:
|
|
```bash
|
|
make run_behindproxy
|
|
```
|