diff options
author | Alan Pearce | 2024-07-11 13:49:27 +0200 |
---|---|---|
committer | Alan Pearce | 2024-07-11 13:49:27 +0200 |
commit | 4021621241627475a2a392125a09145c085b5e82 (patch) | |
tree | 33b27467d0dcc9824f74a086704de20be2aaa182 /internal | |
parent | 7734563d0d186787e38b807fbd50fc31cd035914 (diff) | |
download | website-4021621241627475a2a392125a09145c085b5e82.tar.lz website-4021621241627475a2a392125a09145c085b5e82.tar.zst website-4021621241627475a2a392125a09145c085b5e82.zip |
specify toml key for wildcard domain configuration
Diffstat (limited to 'internal')
-rw-r--r-- | internal/config/config.go | 4 |
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 { |