aboutsummaryrefslogtreecommitdiffstats
path: root/examples/static/src/static_app.erl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/static/src/static_app.erl')
-rw-r--r--examples/static/src/static_app.erl7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/static/src/static_app.erl b/examples/static/src/static_app.erl
index 3fba707..b919c27 100644
--- a/examples/static/src/static_app.erl
+++ b/examples/static/src/static_app.erl
@@ -18,10 +18,9 @@ start(_Type, _Args) ->
]}
]}
],
- {ok, _} = cowboy:start_listener(http, 100,
- cowboy_tcp_transport, [{port, 8080}],
- cowboy_http_protocol, [{dispatch, Dispatch}]
- ),
+ {ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [
+ {dispatch, Dispatch}
+ ]),
static_sup:start_link().
stop(_State) ->