mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
Update links to configs (#4080)
This commit is contained in:
parent
a6dcd19ccc
commit
c41e5980fb
@ -66,7 +66,7 @@ port = get_var_from_path_or_env(config_dir, "PORT") || 8000
|
||||
base_url = get_var_from_path_or_env(config_dir, "BASE_URL")
|
||||
|
||||
if !base_url do
|
||||
raise "BASE_URL configuration option is required. See https://plausible.io/docs/self-hosting-configuration#server"
|
||||
raise "BASE_URL configuration option is required. See https://github.com/plausible/community-edition/tree/v2.1.0?tab=readme-ov-file#quick-start"
|
||||
end
|
||||
|
||||
base_url = URI.parse(base_url)
|
||||
@ -79,10 +79,10 @@ secret_key_base = get_var_from_path_or_env(config_dir, "SECRET_KEY_BASE", nil)
|
||||
|
||||
case secret_key_base do
|
||||
nil ->
|
||||
raise "SECRET_KEY_BASE configuration option is required. See https://plausible.io/docs/self-hosting-configuration#server"
|
||||
raise "SECRET_KEY_BASE configuration option is required. See https://github.com/plausible/community-edition/tree/v2.1.0?tab=readme-ov-file#quick-start"
|
||||
|
||||
key when byte_size(key) < 32 ->
|
||||
raise "SECRET_KEY_BASE must be at least 32 bytes long. See https://plausible.io/docs/self-hosting-configuration#server"
|
||||
raise "SECRET_KEY_BASE must be at least 32 bytes long. See https://github.com/plausible/community-edition/tree/v2.1.0?tab=readme-ov-file#quick-start"
|
||||
|
||||
_ ->
|
||||
nil
|
||||
@ -157,11 +157,11 @@ totp_vault_key = get_var_from_path_or_env(config_dir, "TOTP_VAULT_KEY", nil)
|
||||
|
||||
case totp_vault_key do
|
||||
nil ->
|
||||
raise "TOTP_VAULT_KEY configuration option is required. See https://plausible.io/docs/self-hosting-configuration#server"
|
||||
raise "TOTP_VAULT_KEY configuration option is required. See https://github.com/plausible/community-edition/tree/v2.1.0?tab=readme-ov-file#quick-start"
|
||||
|
||||
key ->
|
||||
if byte_size(Base.decode64!(key)) != 32 do
|
||||
raise "TOTP_VAULT_KEY must exactly 32 bytes long. See https://plausible.io/docs/self-hosting-configuration#server"
|
||||
raise "TOTP_VAULT_KEY must exactly 32 bytes long. See https://github.com/plausible/community-edition/tree/v2.1.0?tab=readme-ov-file#quick-start"
|
||||
end
|
||||
end
|
||||
|
||||
@ -250,7 +250,7 @@ disable_registration =
|
||||
|> String.to_existing_atom()
|
||||
|
||||
if disable_registration not in [true, false, :invite_only] do
|
||||
raise "DISABLE_REGISTRATION must be one of `true`, `false`, or `invite_only`. See https://plausible.io/docs/self-hosting-configuration#server"
|
||||
raise "DISABLE_REGISTRATION must be one of `true`, `false`, or `invite_only`. See https://github.com/plausible/community-edition/tree/v2.1.0?tab=readme-ov-file#disable_registration"
|
||||
end
|
||||
|
||||
hcaptcha_sitekey = get_var_from_path_or_env(config_dir, "HCAPTCHA_SITEKEY")
|
||||
|
Loading…
Reference in New Issue
Block a user