You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
631 B
24 lines
631 B
import Config
|
|
|
|
# DO NOT make it `:debug` or all Ecto logs will be shown for indexer
|
|
config :logger, :console, level: :info
|
|
|
|
config :logger, :ecto,
|
|
level: :debug,
|
|
path: Path.absname("logs/dev/ecto.log")
|
|
|
|
config :logger, :error, path: Path.absname("logs/dev/error.log")
|
|
|
|
config :logger, :account,
|
|
level: :debug,
|
|
path: Path.absname("logs/dev/account.log"),
|
|
metadata_filter: [fetcher: :account]
|
|
|
|
config :block_scout_web, BlockScoutWeb.Endpoint,
|
|
http: [port: 4000],
|
|
https: [
|
|
port: 4001,
|
|
cipher_suite: :strong,
|
|
certfile: "priv/cert/selfsigned.pem",
|
|
keyfile: "priv/cert/selfsigned_key.pem"
|
|
]
|
|
|