|
|
|
|
|
by brightball
3418 days ago
|
|
Correct. Erlang's Cowboy webserver can be included as part of the code base and is actually a built in part of the Phoenix framework. For what it's worth though, that doesn't mean you shouldn't use nginx. It's easier to configure, very fast, faster than Cowboy for static file serving and small enough that it's usually a good idea to setup nginx as a reverse proxy in front of cowboy. Just let it handle the static files and ssl. Cowboy can do all of these things, but one of the many lessons of Elixir is that just because you can doesn't mean you should. :-) |
|