nginx/http/root.conf
2023-12-12 10:14:10 -08:00

12 lines
248 B
Plaintext

server {
listen 443 ssl http2;
server_name root.tronnet.net;
include snippets/ssl-acme.conf;
include snippets/proxy-errors.conf;
include snippets/error-pages.conf;
location / {
proxy_pass http://root.root:80;
proxy_redirect default;
}
}