1
0
mirror of https://github.com/actix/actix-website synced 2025-01-23 00:25:55 +01:00
actix-website/examples/static-files/src/configuration_two.rs
2022-02-26 03:56:24 +00:00

19 lines
400 B
Rust

// <config-two>
use actix_files as fs;
use actix_web::{App, HttpServer};
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new().service(
fs::Files::new("/static", ".")
.show_files_listing()
.use_last_modified(true),
)
})
.bind(("127.0.0.1", 8080))?
.run()
.await
}
// </config-two>