browser-sec-lab/docker/nginx/default.conf
2026-04-14 16:52:41 +03:30

15 lines
410 B
Plaintext

# تنظیم برای victim.lab
<VirtualHost *:80>
ServerName victim.lab
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:8001/
ProxyPassReverse / http://127.0.0.1:8001/
</VirtualHost>
# تنظیم برای attacker.lab
<VirtualHost *:80>
ServerName attacker.lab
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:8002/
ProxyPassReverse / http://127.0.0.1:8002/
</VirtualHost>