summaryrefslogtreecommitdiff
path: root/nginx/ctf.rs.conf
diff options
context:
space:
mode:
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;
+ }
+}