archy/docker/electrs-ui/nginx.conf

14 lines
298 B
Nginx Configuration File
Raw Normal View History

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;
}
}