Skip to content

Instantly share code, notes, and snippets.

@jmmeacham
Last active September 20, 2019 16:00
Show Gist options
  • Save jmmeacham/563e33d690d09b3101b8e0496617d386 to your computer and use it in GitHub Desktop.
Save jmmeacham/563e33d690d09b3101b8e0496617d386 to your computer and use it in GitHub Desktop.
nginx.conf.j2
server {
listen 80;
server_name www.hackazon.com hackazon.com;
location / {
proxy_pass http://127.0.0.1:8002;
}
}
server {
listen 80;
server_name www.dvwa.com dvwa.com;
location / {
proxy_pass http://127.0.0.1:8001;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment