This commit is contained in:
2025-05-28 18:07:07 +00:00
parent 455b0085ec
commit 6c8458f63c
5 changed files with 393 additions and 5 deletions

View File

@ -55,8 +55,8 @@ export async function startTestServer(config: ITestServerConfig): Promise<ITestS
if (serverConfig.tlsEnabled) {
try {
const certPath = config.testCertPath || '/home/centraluser/eu.central.ingress-2/certs/bleu_de_HTTPS/cert.pem';
const keyPath = config.testKeyPath || '/home/centraluser/eu.central.ingress-2/certs/bleu_de_HTTPS/key.pem';
const certPath = config.testCertPath || './test/fixtures/test-cert.pem';
const keyPath = config.testKeyPath || './test/fixtures/test-key.pem';
cert = await plugins.fs.promises.readFile(certPath, 'utf8');
key = await plugins.fs.promises.readFile(keyPath, 'utf8');