1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! This example demonstrates how to serve files from the file system over HTTP.
//!
//! # Run the example
//!
//! ```sh
//! cargo run --example http_service_fs --features=http-full
//! ```
//!
//! # Expected output
//!
//! The server will start and listen on `:62009`. You can use your browser to interact with the service:
//!
//! ```sh
//! curl -v http://127.0.0.1:62009/test-files/index.html
//! ```
//!
//! You should see a response with `HTTP/1.1 200 OK` and the content of the `index.html` file.
use rama::{
Layer,
http::{server::HttpServer, service::fs::ServeDir},
layer::TraceErrLayer,
rt::Executor,
tcp::server::TcpListener,
};
#[tokio::main]
async fn main() {
let exec = Executor::default();
let listener = TcpListener::bind("127.0.0.1:62009")
.await
.expect("bind TCP Listener");
// This will serve files in the current working dir
let cwd = std::env::current_dir().expect("current working dir");
println!("Serving files from: {:?}", cwd);
let http_fs_server = HttpServer::auto(exec).service(ServeDir::new(cwd));
// Serve the HTTP server over TCP,
// ...once running you can go in browser for example to:
println!("open: http://127.0.0.1:62009/test-files/index.html");
listener
.serve(TraceErrLayer::new().into_layer(http_fs_server))
.await;
}