forked from exozyme/nginx
11 lines
193 B
Text
11 lines
193 B
Text
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name contest.exozy.me;
|
|
|
|
include conf.d/ssl;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:9534;
|
|
}
|
|
}
|