@model BTCPayServer.Models.ServerViewModels.SSHServiceViewModel @{ ViewData.SetLayoutModel(new LayoutModel(nameof(ServerNavPages.Services), StringLocalizer["SSH settings"]) .SetCategory(WellKnownCategories.Server)); ViewData.SetBreadcrumbs([new(StringLocalizer["Services"], Action: nameof(BTCPayServer.Controllers.UIServerController.Services))]); }

SSH services are used by the maintenance operations.

@if (!ViewContext.ModelState.IsValid) {
}
@if (!string.IsNullOrEmpty(Model.Password)) {
} @if (!string.IsNullOrEmpty(Model.KeyFilePassword)) {
}
@if (Model.SSHKeyFileContent != null) {

Authorized keys

You can enter here SSH public keys authorized to connect to your server.

}

Other actions

Increase the security of your instance by disabling the ability to change the SSH settings in this BTCPay Server instance's user interface.

@section PageFootContent { }