1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-18 13:51:50 +01:00
actix-web/actix-files
2024-07-07 03:54:00 +01:00
..
2024-07-07 03:54:00 +01:00
2023-07-17 02:38:12 +01:00
2024-07-07 03:54:00 +01:00
2019-06-01 17:25:29 +06:00
2019-06-01 17:25:29 +06:00

actix-files

crates.io Documentation Version License
dependency status Download Chat on Discord

Static file serving for Actix Web.

Provides a non-blocking service for serving static files from disk.

Examples

use actix_web::App;
use actix_files::Files;

let app = App::new()
    .service(Files::new("/static", ".").prefer_utf8(true));