mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-06 00:32:34 -04:00
Fix priv dir retrieval
[ci skip]
This commit is contained in:
parent
e38010447a
commit
49d747c75d
1 changed files with 4 additions and 2 deletions
|
@ -28,9 +28,11 @@ defmodule HTTParrot do
|
||||||
{:ok, https_port} = :application.get_env(:httparrot, :https_port)
|
{:ok, https_port} = :application.get_env(:httparrot, :https_port)
|
||||||
{: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)
|
||||||
{:ok, _} = :cowboy.start_https(:https, 100,
|
{:ok, _} = :cowboy.start_https(:https, 100,
|
||||||
[port: https_port, cacertfile: "priv/ssl/server-ca.crt",
|
[port: https_port, cacertfile: priv_dir ++ '/ssl/server-ca.crt',
|
||||||
certfile: "priv/ssl/server.crt", keyfile: "priv/ssl/server.key"],
|
certfile: priv_dir ++ '/ssl/server.crt', keyfile: priv_dir ++ '/ssl/server.key'],
|
||||||
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
|
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
|
||||||
IO.puts "Starting HTTParrot on port #{http_port} and SSL on #{https_port}"
|
IO.puts "Starting HTTParrot on port #{http_port} and SSL on #{https_port}"
|
||||||
HTTParrot.Supervisor.start_link
|
HTTParrot.Supervisor.start_link
|
||||||
|
|
Loading…
Add table
Reference in a new issue