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

12 lines
252 B
Plaintext

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