nginx/http/status.conf

12 lines
246 B
Plaintext
Raw Normal View History

2023-04-01 04:18:56 +00:00
server {
2024-09-09 12:34:14 -07:00
listen 443 ssl;
2023-04-26 15:10:02 -07:00
server_name status.tronnet.net;
2023-12-11 19:05:00 -08:00
include snippets/ssl-acme.conf;
include snippets/proxy-errors.conf;
include snippets/error-pages.conf;
2023-04-26 15:10:02 -07:00
location / {
proxy_pass http://sites.dmz:8080;
proxy_redirect default;
2023-04-26 15:10:02 -07:00
}
2023-04-01 04:18:56 +00:00
}