2026-03-22 03:30:21 +00:00
|
|
|
server {
|
|
|
|
|
listen 50002;
|
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
2026-04-08 23:29:50 +02:00
|
|
|
location /electrs-status {
|
|
|
|
|
proxy_pass http://127.0.0.1:5678/electrs-status;
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_connect_timeout 10s;
|
|
|
|
|
proxy_read_timeout 10s;
|
|
|
|
|
add_header Cache-Control "no-store, no-cache, must-revalidate";
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-22 03:30:21 +00:00
|
|
|
location / {
|
2026-04-08 23:29:50 +02:00
|
|
|
add_header Cache-Control "no-cache";
|
2026-03-22 03:30:21 +00:00
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
}
|
|
|
|
|
}
|