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

Fix priv dir retrieval

[ci skip]
This commit is contained in:
Eduardo Gurgel 2014-01-18 18:52:37 -03:00
parent e38010447a
commit 49d747c75d

View file

@ -28,9 +28,11 @@ defmodule HTTParrot do
{:ok, https_port} = :application.get_env(:httparrot, :https_port)
{: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/ssl/server-ca.crt",
certfile: "priv/ssl/server.crt", keyfile: "priv/ssl/server.key"],
[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}"
HTTParrot.Supervisor.start_link