1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 16:22:32 -04:00

Check if ssl is enabled before starting

[ci skip]
This commit is contained in:
Eduardo Gurgel 2014-01-24 16:39:39 -03:00
parent 2efb6e11fb
commit 1dde648320
2 changed files with 12 additions and 8 deletions

View file

@ -26,16 +26,20 @@ defmodule HTTParrot do
{'/base64/:value', HTTParrot.Base64Handler, []} ] }
])
{:ok, http_port} = :application.get_env(:httparrot, :http_port)
{:ok, https_port} = :application.get_env(:httparrot, :https_port)
ssl = :application.get_env(:httparrot, :ssl, false)
{:ok, _} = :cowboy.start_http(:http, 100, [port: http_port],
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
priv_dir = :code.priv_dir(:httparrot)
{: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 #{http_port} and SSL on #{https_port}"
if ssl do
{:ok, https_port} = :application.get_env(:httparrot, :https_port)
priv_dir = :code.priv_dir(:httparrot)
{: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
end

View file

@ -15,7 +15,7 @@ defmodule Httparrot.Mixfile do
:cowboy,
:jsex ],
mod: { HTTParrot, [] },
env: [ http_port: 8080, https_port: 8433 ] ]
env: [ http_port: 8080, ssl: true, https_port: 8433 ] ]
end
defp deps(:dev) do