2026-02-03 21:49:30 +00:00
|
|
|
server {
|
2026-02-17 15:03:34 +00:00
|
|
|
listen 80;
|
2026-02-03 21:49:30 +00:00
|
|
|
server_name _;
|
|
|
|
|
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
2026-03-17 00:03:08 +00:00
|
|
|
location /lnd-connect-info {
|
|
|
|
|
proxy_pass http://127.0.0.1:5678/lnd-connect-info;
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-03 21:49:30 +00:00
|
|
|
location / {
|
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
}
|
|
|
|
|
}
|