mirror of
https://github.com/actix/actix-website
synced 2024-11-25 17:22:42 +01:00
27 lines
498 B
Rust
27 lines
498 B
Rust
|
// <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>
|