Host an alternate OCS server on port 9535

This commit is contained in:
Anthony Wang 2022-01-17 16:44:38 -06:00
parent 76f0b2b18b
commit 90a9282211
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -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;
}
}