@model BTCPayServer.Models.ServerViewModels.ServicesViewModel
@{
ViewData.SetActivePage(ServerNavPages.Services, "Services");
}
@ViewData["Title"]
Crypto services exposed by your server
Crypto |
Access Type |
Actions |
@foreach (var s in Model.ExternalServices.Where(service => !string.IsNullOrEmpty(service.CryptoCode)))
{
@s.CryptoCode |
@s.DisplayName
@if (s.ConnectionString.IsOnion() == true ||
(s.ConnectionString.IsOnion() == false && Context.Request.IsOnion()))
{
}
|
See information
|
}
@if (Model.OtherExternalServices.Count != 0 || Model.ExternalServices.Any(service => string.IsNullOrEmpty(service.CryptoCode)))
{
Other external services
Name |
Actions |
@foreach (var s in Model.ExternalServices.Where(service => string.IsNullOrEmpty(service.CryptoCode)))
{
@s.DisplayName |
See information
|
}
@foreach (var s in Model.OtherExternalServices)
{
@s.Name |
See information
|
}
}
@if (Model.TorHttpServices.Count != 0)
{
HTTP-based Tor hidden services
Name |
Actions |
@foreach (var s in Model.TorHttpServices)
{
@s.Name |
See information
|
}
}
@if (Model.TorOtherServices.Count != 0)
{
Other Tor hidden services
Name |
URL |
@foreach (var s in Model.TorOtherServices)
{
@s.Name |
@s.Link
|
}
}
External storage services
Integrated storage providers to store file uploads from BTCPay Server.
Name |
Actions |
@foreach (var s in Model.ExternalStorageServices)
{
@s.Name |
Edit
|
}
@section PageFootContent {
}