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)
|
2022-01-25 10:46:25 +01:00
|
|
|
def acme_challenge_path, do: Application.get_env(:ha_handler, :acme_challenge_path)
|
2022-01-24 14:03:10 +01:00
|
|
|
end
|