From 90a92822111f8e17babce3dc86b87490df30c514 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Mon, 17 Jan 2022 16:44:38 -0600 Subject: [PATCH] Host an alternate OCS server on port 9535 --- ocs.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ocs.conf b/ocs.conf index 7bd7004..38c34ca 100644 --- a/ocs.conf +++ b/ocs.conf @@ -9,3 +9,15 @@ server { proxy_pass http://localhost:9534; } } + +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name contest2.exozy.me; + + include conf.d/ssl; + + location / { + proxy_pass http://localhost:9535; + } +}