Fix CORS_ORIGIN example

Values must not contain protocol prefix

fixes #86
This commit is contained in:
Linus Fricke
2025-08-17 17:39:13 +02:00
committed by GitHub
parent 92a3fd1fee
commit a16a8a9713
+1 -1
View File
@@ -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