From a16a8a9713da8057c668d1800dfdfd9703941a25 Mon Sep 17 00:00:00 2001 From: Linus Fricke <33085157+Sarsum@users.noreply.github.com> Date: Sun, 17 Aug 2025 17:39:13 +0200 Subject: [PATCH] Fix CORS_ORIGIN example Values must not contain protocol prefix fixes #86 --- docs/guide/standalone/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/standalone/options.md b/docs/guide/standalone/options.md index 271cd29..6a6b0fb 100644 --- a/docs/guide/standalone/options.md +++ b/docs/guide/standalone/options.md @@ -2,7 +2,7 @@ ## CORS -You can change the default CORS settings for redeeming and generating challenges by setting the `CORS_ORIGIN` environment variable when running the server. This defaults to `*`, which allows all origins. You can add multiple origins by separating them with commas, like `https://...,https:/...`. +You can change the default CORS settings for redeeming and generating challenges by setting the `CORS_ORIGIN` environment variable when running the server. This defaults to `*`, which allows all origins. You can add multiple origins by separating them with commas, like `domain1.tld,domain2.tld,...`. ## Asset server