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;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location / {
|
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
}
|
|
|
|
|
}
|