-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.acouvreur.yml
45 lines (41 loc) · 1.34 KB
/
docker-compose.acouvreur.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: "3.7"
services:
traefik:
image: traefik
ports:
- "80:80"
- "8080:8080"
command:
- --api.dashboard=true
- --api.insecure=true
- --experimental.plugins.traefik-modsecurity-plugin.modulename=github.com/acouvreur/traefik-modsecurity-plugin
- --experimental.plugins.traefik-modsecurity-plugin.version=v1.3.0
- --providers.docker=true
- --entrypoints.http.address=:80
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
labels:
- traefik.enable=true
- traefik.http.services.traefik.loadbalancer.server.port=8080
- traefik.http.middlewares.waf.plugin.traefik-modsecurity-plugin.modSecurityUrl=http://waf:80
- traefik.http.middlewares.waf.plugin.traefik-modsecurity-plugin.maxBodySize=10485760
waf:
image: owasp/modsecurity-crs:apache
environment:
- PARANOIA=1
- ANOMALY_INBOUND=10
- ANOMALY_OUTBOUND=5
- BACKEND=http://dummy
dummy:
image: traefik/whoami
website-with-waf:
image: traefik/whoami
labels:
- traefik.enable=true
- traefik.http.routers.website-with-waf.rule=PathPrefix(`/website`)
- traefik.http.routers.website-with-waf.middlewares=waf@docker
website:
image: traefik/whoami
labels:
- traefik.enable=true
- traefik.http.routers.website.rule=PathPrefix(`/website`)