nginx/http/minecraft.conf

12 lines
259 B
Plaintext
Raw Permalink Normal View History

2024-05-08 07:22:39 +00:00
server {
2024-09-09 19:34:14 +00:00
listen 443 ssl;
2024-05-08 07:22:39 +00:00
server_name minecraft.tronnet.net;
include snippets/ssl-acme.conf;
include snippets/proxy-errors.conf;
include snippets/error-pages.conf;
2024-05-08 07:22:39 +00:00
location / {
proxy_pass http://minecraft.root:80;
proxy_redirect default;
}
}