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:
parent
2efb6e11fb
commit
1dde648320
2 changed files with 12 additions and 8 deletions
|
@ -26,16 +26,20 @@ defmodule HTTParrot do
|
||||||
{'/base64/:value', HTTParrot.Base64Handler, []} ] }
|
{'/base64/:value', HTTParrot.Base64Handler, []} ] }
|
||||||
])
|
])
|
||||||
{:ok, http_port} = :application.get_env(:httparrot, :http_port)
|
{: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],
|
{:ok, _} = :cowboy.start_http(:http, 100, [port: http_port],
|
||||||
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
|
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
|
||||||
|
|
||||||
priv_dir = :code.priv_dir(:httparrot)
|
if ssl do
|
||||||
{:ok, _} = :cowboy.start_https(:https, 100,
|
{:ok, https_port} = :application.get_env(:httparrot, :https_port)
|
||||||
[port: https_port, cacertfile: priv_dir ++ '/ssl/server-ca.crt',
|
priv_dir = :code.priv_dir(:httparrot)
|
||||||
certfile: priv_dir ++ '/ssl/server.crt', keyfile: priv_dir ++ '/ssl/server.key'],
|
{:ok, _} = :cowboy.start_https(:https, 100,
|
||||||
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
|
[port: https_port, cacertfile: priv_dir ++ '/ssl/server-ca.crt',
|
||||||
IO.puts "Starting HTTParrot on port #{http_port} and SSL on #{https_port}"
|
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
|
HTTParrot.Supervisor.start_link
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -15,7 +15,7 @@ defmodule Httparrot.Mixfile do
|
||||||
:cowboy,
|
:cowboy,
|
||||||
:jsex ],
|
:jsex ],
|
||||||
mod: { HTTParrot, [] },
|
mod: { HTTParrot, [] },
|
||||||
env: [ http_port: 8080, https_port: 8433 ] ]
|
env: [ http_port: 8080, ssl: true, https_port: 8433 ] ]
|
||||||
end
|
end
|
||||||
|
|
||||||
defp deps(:dev) do
|
defp deps(:dev) do
|
||||||
|
|
Loading…
Add table
Reference in a new issue