mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 06:47:50 +01:00
78 lines
4.1 KiB
Text
78 lines
4.1 KiB
Text
@model LightningNodeViewModel
|
|
@{
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewData["Title"] = "Add lightning node (Experimental)";
|
|
ViewData.AddActivePage(BTCPayServer.Views.Stores.StoreNavPages.Index);
|
|
}
|
|
|
|
<h4>@ViewData["Title"]</h4>
|
|
<partial name="_StatusMessage" for="StatusMessage" />
|
|
|
|
<div class="row">
|
|
<div class="col-md-10">
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<p>This connection string encapsulates the necessary information BTCPay needs to connect to your lightning node, we currently support:</p>
|
|
<ul>
|
|
<li><code>clightning</code> via TCP or unix domain socket connection</li>
|
|
<li><code>lightning charge</code> via HTTPS</li>
|
|
<li><code>lnd</code> via the REST proxy</li>
|
|
</ul>
|
|
<table class="table table-sm table-responsive-md">
|
|
<thead>
|
|
<tr>
|
|
<th>Examples</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<tr>
|
|
<th class="small"><b>type=</b>clightning;<b>server=</b>unix://root/.lightning/lightning-rpc</th>
|
|
</tr>
|
|
<tr>
|
|
<th class="small"><b>type=</b>clightning;<b>server=</b>tcp://1.1.1.1:27743/</th>
|
|
</tr>
|
|
<tr>
|
|
<th class="small"><b>type=</b>lnd-rest;<b>server=</b>http://mylnd:8080/;<b>macaroonfilepath=</b>/root/.lnd/admin.macaroon;<b>allowinsecure=</b>true</th>
|
|
</tr>
|
|
<tr>
|
|
<th class="small"><b>type=</b>lnd-rest;<b>server=</b>https://mylnd:8080/;<b>macaroon=</b>abef263adfe...</th>
|
|
</tr>
|
|
<tr>
|
|
<th class="small"><b>type=</b>lnd-rest;<b>server=</b>https://mylnd:8080/;<b>macaroon=</b>abef263adfe...;<b>certthumbprint=</b>abef263adfe...</th>
|
|
</tr>
|
|
<tr>
|
|
<th class="small"><b>type=</b>charge;<b>server=</b>https://charge:8080/;<b>api-token=</b>myapitoken...</th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<p>Note that the <code>certthumbprint</code> to connect to your LND node can be obtained through this command line:</p>
|
|
<p><pre><code>openssl x509 -noout -fingerprint -sha256 -inform pem -in /root/.lnd/tls.cert</code></pre></p>
|
|
<p>You can omit <code>certthumprint</code> if you the certificate is trusted by your machine</p>
|
|
<p>You can set <code>allowinsecure</code> to <code>true</code> if your LND REST server is using HTTP or HTTPS with an untrusted certificate which you don't know the <code>certthumprint</code></p>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="ConnectionString"></label>
|
|
<input id="lightningurl" asp-for="ConnectionString" class="form-control" />
|
|
<span asp-validation-for="ConnectionString" class="text-danger"></span>
|
|
@if (Model.InternalLightningNode != null)
|
|
{
|
|
<p class="form-text text-muted">
|
|
You can use the internal lightning node by <a href="#" onclick="$('#lightningurl').val('@Model.InternalLightningNode'); return false;">clicking here</a>
|
|
</p>
|
|
}
|
|
</div>
|
|
<div class="form-check">
|
|
<input id="enabled" asp-for="Enabled" class="form-check-input" />
|
|
<label asp-for="Enabled" class="form-check-label"></label>
|
|
<span asp-validation-for="Enabled" class="text-danger"></span>
|
|
</div>
|
|
<button name="command" type="submit" value="save" class="btn btn-primary">Submit</button>
|
|
<button name="command" type="submit" value="test" class="btn btn-secondary">Test connection</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
}
|