summaryrefslogtreecommitdiff
path: root/nginx/ctf.rs.conf
diff options
context:
space:
mode:
authorAleksa Vuckovic <aleksa@vuckovic.cc>2023-10-16 19:09:29 +0200
committerAleksa Vuckovic <aleksa@vuckovic.cc>2023-10-16 23:30:53 +0200
commitca4ad65bcb032ded36610054c59182599d39360f (patch)
tree12ca4e281094984b59e3a2df7d2ce244b84e5f40 /nginx/ctf.rs.conf
Initial commit
Diffstat (limited to 'nginx/ctf.rs.conf')
-rw-r--r--nginx/ctf.rs.conf23
1 files changed, 23 insertions, 0 deletions
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;
+ }
+}