From b6eeb1eef3b3e4f8da6ced6ee2160f8d6244c465 Mon Sep 17 00:00:00 2001 From: Roger Ng Date: Thu, 20 Mar 2025 17:42:00 +0000 Subject: [PATCH] Add missing `internal/` to `testdata` paths --- deployment/live/gcp/test/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deployment/live/gcp/test/README.md b/deployment/live/gcp/test/README.md index 0ac49a36..ecbaba1d 100644 --- a/deployment/live/gcp/test/README.md +++ b/deployment/live/gcp/test/README.md @@ -75,9 +75,9 @@ Generate a chain manually. The password for the private key is `gently`: ```bash mkdir -p /tmp/httpschain openssl genrsa -out /tmp/httpschain/cert.key 2048 -openssl req -new -key /tmp/httpschain/cert.key -out /tmp/httpschain/cert.csr -config=testdata/fake-ca.cfg -openssl x509 -req -days 3650 -in /tmp/httpschain/cert.csr -CAkey testdata/fake-ca.privkey.pem -CA testdata/fake-ca.cert -outform pem -out /tmp/httpschain/chain.pem -provider legacy -provider default -cat testdata/fake-ca.cert >> /tmp/httpschain/chain.pem +openssl req -new -key /tmp/httpschain/cert.key -out /tmp/httpschain/cert.csr -config=internal/testdata/fake-ca.cfg +openssl x509 -req -days 3650 -in /tmp/httpschain/cert.csr -CAkey internal/testdata/fake-ca.privkey.pem -CA internal/testdata/fake-ca.cert -outform pem -out /tmp/httpschain/chain.pem -provider legacy -provider default +cat internal/testdata/fake-ca.cert >> /tmp/httpschain/chain.pem ``` Finally, submit the chain to the SCTFE: