From 68d905067f23420a512657ca8e6c1bad0776538e Mon Sep 17 00:00:00 2001 From: David Allen Date: Sun, 24 Aug 2025 20:32:12 -0600 Subject: [PATCH] chore: updated readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca94345..c7f620d 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ targets: The tool can also run as a service to generate files for clients: ```bash -export CONFIGURATOR_JWKS_URL="http://my.openchami.cluster:8443/key" +export MAKESHIFT_JWKS_URL="http://my.openchami.cluster:8443/key" ./configurator serve --config config.yaml ``` @@ -62,7 +62,7 @@ curl http://127.0.0.1:3334/generate?target=coredhcp -X GET -H "Authorization: Be ./configurator fetch --target coredhcp --host http://127.0.0.1:3334 --cacert ochami.pem ``` -This will do the same thing as the `generate` subcommand, but through a GET request where the file contents is returned in the response. The access token is only required if the `CONFIGURATOR_JWKS_URL` environment variable is set when starting the server with `serve`. The `ACCESS_TOKEN` environment variable is passed to `curl` using the `Authorization` header and expects a token as a JWT. +This will do the same thing as the `generate` subcommand, but through a GET request where the file contents is returned in the response. The access token is only required if the `MAKESHIFT_JWKS_URL` environment variable is set when starting the server with `serve`. The `ACCESS_TOKEN` environment variable is passed to `curl` using the `Authorization` header and expects a token as a JWT. ### Docker