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

Use Application.get(fetch)_env/3(2) functions

This commit is contained in:
Aleksei Magusev 2014-11-02 12:05:51 +01:00
parent 469b5cde2d
commit 80562b3bbf

View file

@ -31,13 +31,12 @@ defmodule HTTParrot do
{'/image', HTTParrot.ImageHandler, []},
{'/websocket', HTTParrot.WebsocketHandler, []} ] }
])
{:ok, http_port} = :application.get_env(:httparrot, :http_port)
ssl = :application.get_env(:httparrot, :ssl, false)
{:ok, _} = :cowboy.start_http(:http, 100, [port: http_port],
{:ok, http_port} = Application.fetch_env(:httparrot, :http_port)
:cowboy.start_http(:http, 100, [port: http_port],
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
if ssl do
{:ok, https_port} = :application.get_env(:httparrot, :https_port)
if Application.get_env(:httparrot, :ssl, false) do
{:ok, https_port} = Application.fetch_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',