nginx/server.conf

12 lines
192 B
Text

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name server.exozy.me;
include conf.d/ssl;
location / {
proxy_pass http://localhost:6000;
}
}