aboutsummaryrefslogtreecommitdiffstats
path: root/examples/rest_hello_world/src/rest_hello_world_app.erl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rest_hello_world/src/rest_hello_world_app.erl')
-rw-r--r--examples/rest_hello_world/src/rest_hello_world_app.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/rest_hello_world/src/rest_hello_world_app.erl b/examples/rest_hello_world/src/rest_hello_world_app.erl
index 510dbb1..a662c3d 100644
--- a/examples/rest_hello_world/src/rest_hello_world_app.erl
+++ b/examples/rest_hello_world/src/rest_hello_world_app.erl
@@ -11,13 +11,13 @@
%% API.
start(_Type, _Args) ->
- Dispatch = [
+ Dispatch = cowboy_router:compile([
{'_', [
- {[], toppage_handler, []}
+ {"/", toppage_handler, []}
]}
- ],
+ ]),
{ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [
- {dispatch, Dispatch}
+ {env, [{dispatch, Dispatch}]}
]),
rest_hello_world_sup:start_link().