mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-12-06 00:16:49 +00:00
11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
import * as api from "./base";
|
|
|
|
export async function testHttpCertificate(domains: string[]): Promise<Record<string, string>> {
|
|
return await api.post({
|
|
url: "/nginx/certificates/test-http",
|
|
data: {
|
|
domains,
|
|
},
|
|
});
|
|
}
|