mirror of
https://github.com/plausible/analytics.git
synced 2024-12-23 17:44:43 +03:00
disable registration by default in self-hosted setups (#3014)
* disable registration by default in self-hosted setups * add changelog entry * add error flash
This commit is contained in:
parent
2c4cea6dce
commit
fd15853965
@ -40,6 +40,7 @@ All notable changes to this project will be documented in this file.
|
||||
- Device type is now determined from the User-Agent instead of window.innerWidth plausible/analytics#2711
|
||||
- Add padding by default to embedded dashboards so that shadows are not cut off plausible/analytics#2744
|
||||
- Update the User Agents database (https://github.com/matomo-org/device-detector/releases/tag/6.1.1)
|
||||
- Disable registration in self-hosted setups by default plausible/analytics#3014
|
||||
|
||||
### Removed
|
||||
- Remove Firewall plug and `IP_BLOCKLIST` environment variable
|
||||
|
@ -175,9 +175,17 @@ enable_email_verification =
|
||||
|> get_var_from_path_or_env("ENABLE_EMAIL_VERIFICATION", "false")
|
||||
|> String.to_existing_atom()
|
||||
|
||||
is_selfhost =
|
||||
config_dir
|
||||
|> get_var_from_path_or_env("SELFHOST", "true")
|
||||
|> String.to_existing_atom()
|
||||
|
||||
# by default, registration is disabled in self-hosted setups
|
||||
disable_registration_default = to_string(is_selfhost)
|
||||
|
||||
disable_registration =
|
||||
config_dir
|
||||
|> get_var_from_path_or_env("DISABLE_REGISTRATION", "false")
|
||||
|> get_var_from_path_or_env("DISABLE_REGISTRATION", disable_registration_default)
|
||||
|> String.to_existing_atom()
|
||||
|
||||
if disable_registration not in [true, false, :invite_only] do
|
||||
@ -192,11 +200,6 @@ log_level =
|
||||
|> get_var_from_path_or_env("LOG_LEVEL", "warn")
|
||||
|> String.to_existing_atom()
|
||||
|
||||
is_selfhost =
|
||||
config_dir
|
||||
|> get_var_from_path_or_env("SELFHOST", "true")
|
||||
|> String.to_existing_atom()
|
||||
|
||||
custom_script_name =
|
||||
config_dir
|
||||
|> get_var_from_path_or_env("CUSTOM_SCRIPT_NAME", "script")
|
||||
|
@ -37,7 +37,10 @@ defmodule PlausibleWeb.AuthController do
|
||||
conn
|
||||
|
||||
disable_registration in [:invite_only, true] ->
|
||||
conn |> redirect(to: Routes.auth_path(conn, :login_form)) |> halt()
|
||||
conn
|
||||
|> put_flash(:error, "Registration is disabled on this instance")
|
||||
|> redirect(to: Routes.auth_path(conn, :login_form))
|
||||
|> halt()
|
||||
|
||||
true ->
|
||||
conn
|
||||
|
Loading…
Reference in New Issue
Block a user