14 lines
403 B
TypeScript
14 lines
403 B
TypeScript
|
|
/**
|
||
|
|
* ACME directory URL constants for well-known CAs
|
||
|
|
*/
|
||
|
|
export const ACME_DIRECTORY_URLS = {
|
||
|
|
letsencrypt: {
|
||
|
|
production: 'https://acme-v02.api.letsencrypt.org/directory',
|
||
|
|
staging: 'https://acme-staging-v02.api.letsencrypt.org/directory',
|
||
|
|
},
|
||
|
|
buypass: {
|
||
|
|
production: 'https://api.buypass.com/acme/directory',
|
||
|
|
staging: 'https://api.test4.buypass.no/acme/directory',
|
||
|
|
},
|
||
|
|
} as const;
|