1
0
Fork 0
forked from exozyme/nginx

Change OCS port to 9534

This commit is contained in:
Anthony Wang 2022-01-16 16:42:22 -06:00
parent da0e013a97
commit 29836ba25a
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

View file

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