server {
listen 50002;
server_name _;
root /usr/share/nginx/html;
index index.html;
# electrs-status is fetched via absolute /electrs-status path,
# handled by the host nginx → backend at :5678 directly
location / {
try_files $uri $uri/ /index.html;
}