2026-03-19 17:02:17 +00:00
|
|
|
server {
|
2026-04-02 01:28:11 +01:00
|
|
|
listen 8080;
|
2026-03-19 17:02:17 +00:00
|
|
|
server_name _;
|
|
|
|
|
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
2026-04-02 16:15:04 +01:00
|
|
|
# lnd-connect-info is fetched via absolute URL path,
|
|
|
|
|
# handled by the host nginx → backend at :5678 directly
|
2026-03-19 17:02:17 +00:00
|
|
|
location / {
|
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
}
|
|
|
|
|
}
|