nginx/http/minecraft.conf

10 lines
185 B
Plaintext
Raw Normal View History

2024-05-08 07:22:39 +00:00
server {
listen 443 ssl http2;
server_name minecraft.tronnet.net;
include snippets/ssl-acme.conf;
location / {
proxy_pass http://minecraft.root:80;
proxy_redirect default;
}
}