This project implements a minimal web server.
It is mostly based on the web server chapter of the The Rust Programming Language Book.
While the implementation follows the book for the most part, I took some liberties to implement certain things and parts differently.
The server can only handle GET
requests right now.
You need the Rust programming language installed (installation guideline).
Then simply run cargo run
to run the web server in your terminal.
By default it will listen on localhost
on port 8080
.
Easy access: http://localhost:8080/
Copyright 2020 (c) by Daniel Kurashige-Gollub [email protected]