From ca4ad65bcb032ded36610054c59182599d39360f Mon Sep 17 00:00:00 2001 From: Aleksa Vuckovic Date: Mon, 16 Oct 2023 19:09:29 +0200 Subject: Initial commit --- nginx/ctf.rs.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 nginx/ctf.rs.conf (limited to 'nginx/ctf.rs.conf') diff --git a/nginx/ctf.rs.conf b/nginx/ctf.rs.conf new file mode 100644 index 0000000..774b19c --- /dev/null +++ b/nginx/ctf.rs.conf @@ -0,0 +1,23 @@ +server { + listen 80; + listen [::]:80; + + server_name tulip.ctf.rs; + + location / { + proxy_pass http://127.0.0.1:3000; + include proxy_params; + } +} + +server { + listen 80; + listen [::]:80; + + server_name fast.ctf.rs; + + location / { + proxy_pass http://127.0.0.1:2023; + include proxy_params; + } +} -- cgit v1.2.3