1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

No need in supervisor file

This commit is contained in:
Aleksei Magusev 2014-11-03 00:26:04 +01:00
parent 80562b3bbf
commit f49228fed2
2 changed files with 9 additions and 17 deletions

View file

@ -31,21 +31,25 @@ defmodule HTTParrot do
{'/image', HTTParrot.ImageHandler, []},
{'/websocket', HTTParrot.WebsocketHandler, []} ] }
])
{:ok, http_port} = Application.fetch_env(:httparrot, :http_port)
:cowboy.start_http(:http, 100, [port: http_port],
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
IO.puts "Starting HTTParrot on port #{http_port}"
{:ok, _} = :cowboy.start_http(:http, 100,
[port: http_port],
[env: [dispatch: dispatch],
onresponse: &prettify_json/4])
if Application.get_env(:httparrot, :ssl, false) do
{:ok, https_port} = Application.fetch_env(:httparrot, :https_port)
priv_dir = :code.priv_dir(:httparrot)
IO.puts "Starting HTTParrot on port #{https_port} (SSL)"
{:ok, _} = :cowboy.start_https(:https, 100,
[port: https_port, cacertfile: priv_dir ++ '/ssl/server-ca.crt',
certfile: priv_dir ++ '/ssl/server.crt', keyfile: priv_dir ++ '/ssl/server.key'],
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
IO.puts "Starting HTTParrot on port #{https_port} (SSL)"
end
IO.puts "Starting HTTParrot on port #{http_port}"
HTTParrot.Supervisor.start_link
Supervisor.start_link([], strategy: :one_for_one)
end
def stop(_State), do: :ok

View file

@ -1,12 +0,0 @@
defmodule HTTParrot.Supervisor do
use Supervisor
def start_link do
:supervisor.start_link({:local, __MODULE__}, __MODULE__, [])
end
def init([]) do
children = []
supervise children, strategy: :one_for_one
end
end