You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
499 B
10 lines
499 B
/**
|
|
* Generate a domain certificate signed by the devcert root CA. Domain
|
|
* certificates are cached in their own directories under
|
|
* CONFIG_ROOT/domains/<domain>, and reused on subsequent requests. Because the
|
|
* individual domain certificates are signed by the devcert root CA (which was
|
|
* added to the OS/browser trust stores), they are trusted.
|
|
*/
|
|
export default function generateDomainCertificate(domain: string): Promise<void>;
|
|
export declare function generateKey(filename: string): void;
|