From 29836ba25ac6b8b2baff3585cbb7a61e2a5cb8dc Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Sun, 16 Jan 2022 16:42:22 -0600 Subject: [PATCH] Change OCS port to 9534 --- server.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.conf b/server.conf index 117b471..7bd7004 100644 --- a/server.conf +++ b/server.conf @@ -1,11 +1,11 @@ server { listen 443 ssl http2; listen [::]:443 ssl http2; - server_name server.exozy.me; + server_name contest.exozy.me; include conf.d/ssl; location / { - proxy_pass http://localhost:6000; + proxy_pass http://localhost:9534; } }