about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2024-07-11 13:49:27 +0200
committerAlan Pearce2024-07-11 13:49:27 +0200
commit4021621241627475a2a392125a09145c085b5e82 (patch)
tree33b27467d0dcc9824f74a086704de20be2aaa182
parent7734563d0d186787e38b807fbd50fc31cd035914 (diff)
downloadwebsite-4021621241627475a2a392125a09145c085b5e82.tar.lz
website-4021621241627475a2a392125a09145c085b5e82.tar.zst
website-4021621241627475a2a392125a09145c085b5e82.zip
specify toml key for wildcard domain configuration
-rw-r--r--internal/config/config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index 24a2fed..7ccad85 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -42,8 +42,8 @@ type Config struct {
 	OriginalDomain   string `toml:"original_domain"`
 	GoatCounter      URL    `toml:"goatcounter"`
 	Domains          []string
-	WildcardDomain   string
-	OIDCHost         URL `toml:"oidc_host"`
+	WildcardDomain   string `toml:"wildcard_domain"`
+	OIDCHost         URL    `toml:"oidc_host"`
 	Taxonomies       []Taxonomy
 	CSP              *CSP `toml:"content-security-policy"`
 	Extra            struct {