chessh/config/config.exs

18 lines
431 B
Elixir
Raw Normal View History

2022-12-19 03:37:10 -05:00
import Config
config :chessh,
ecto_repos: [Chessh.Repo],
2022-12-28 01:50:22 -05:00
key_dir: Path.join(Path.dirname(__DIR__), "priv/keys"),
port: 42_069,
max_sessions: 255
2022-12-19 03:37:10 -05:00
2022-12-29 19:21:20 -05:00
config :chessh, RateLimits,
jail_timeout_ms: 5 * 60 * 1000,
2022-12-29 19:49:42 -05:00
jail_attempt_threshold: 15,
2022-12-29 19:21:20 -05:00
max_concurrent_user_sessions: 5
2022-12-28 01:50:22 -05:00
config :hammer,
backend: {Hammer.Backend.ETS, [expiry_ms: 60_000 * 60 * 4, cleanup_interval_ms: 60_000 * 10]}
2022-12-19 03:37:10 -05:00
import_config "#{config_env()}.exs"