Skip to content
Snippets Groups Projects
Commit 4dc9ed2b authored by Theo LECOUBLET's avatar Theo LECOUBLET
Browse files

fix ngnix 403

parent cfba84f7
No related branches found
No related tags found
No related merge requests found
version: "3.8"
services:
traefik:
image: traefik:v2.10
......@@ -83,7 +81,7 @@ services:
xss-protected:
image: nginx:alpine
volumes:
- ./xss/protected:/usr/share/nginx/html
- ./xss_csp/protected:/usr/share/nginx/html
labels:
- "traefik.enable=true"
- "traefik.http.routers.xss-protected.rule=Host(`xss-protected.localhost`)"
......@@ -92,8 +90,7 @@ services:
xss-vulnerable:
image: nginx:alpine
volumes:
- ./xss/vulnerable:/usr/share/nginx/html
# - ./xss/nginx-vulnerable.conf:/etc/nginx/conf.d/default.conf
- ./xss_csp/vulnerable:/usr/share/nginx/html
labels:
- "traefik.enable=true"
- "traefik.http.routers.xss-vulnerable.rule=Host(`xss-vulnerable.localhost`)"
......@@ -101,8 +98,7 @@ services:
xss-attacker:
image: nginx:alpine
volumes:
- ./xss/attacker:/usr/share/nginx/html
# - ./xss/nginx-attacker.conf:/etc/nginx/conf.d/default.conf
- ./xss_csp/attacker:/usr/share/nginx/html
labels:
- "traefik.enable=true"
- "traefik.http.routers.xss-attacker.rule=Host(`xss-attacker.localhost`)"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment