ha-handler/lib/ha_handler.ex

8 lines
275 B
Elixir
Raw Normal View History

2022-01-24 14:03:10 +01:00
defmodule HAHandler do
2022-01-25 09:45:30 +01:00
@moduledoc false
2022-01-24 14:03:10 +01:00
2022-01-25 09:45:30 +01:00
def http_port, do: Application.get_env(:ha_handler, :http_port)
def haproxy_socket, do: Application.get_env(:ha_handler, :haproxy_socket)
def acme_challenge_path, do: Application.get_env(:ha_handler, :acme_challenge_path)
2022-01-24 14:03:10 +01:00
end