1
0
mirror of https://github.com/actix/actix-website synced 2024-11-25 17:22:42 +01:00
actix-website/examples/static-files/src/configuration_two.rs

27 lines
498 B
Rust
Raw Normal View History

2019-06-17 23:35:47 +02:00
// <config-two>
// use actix_files::{FileConfig, Files};
// use actix_web::App;
// #[derive(Default)]
// struct MyConfig;
// impl FileConfig for MyConfig {
// fn is_use_etag() -> bool {
// false
// }
// fn is_use_last_modifier() -> bool {
// false
// }
// }
// fn main() {
// App::new().service(
// "/static",
// Files::with_config(".", MyConfig)
// .unwrap()
// .show_files_listing(),
// );
// }
// </config-two>