archy/docker/lnd-ui/nginx.conf

14 lines
285 B
Nginx Configuration File
Raw Normal View History

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