actix-web/actix-files
cui 36dadc5351
typo: bytes=bytes=0-9 to bytes=0-9 (#3934)
* typo: bytes=bytes=0-9 to bytes=0-9

* fix: ci

* fix: ci
2026-02-16 11:54:34 +00:00
..
examples docs: add guarded-listings example 2023-10-30 00:03:22 +00:00
src typo: bytes=bytes=0-9 to bytes=0-9 (#3934) 2026-02-16 11:54:34 +00:00
tests fix(files,http,web): do not compress 206 at all (#3923) 2026-02-15 08:56:43 +09:00
CHANGES.md fix(files,http,web): do not compress 206 at all (#3923) 2026-02-15 08:56:43 +09:00
Cargo.toml fix(files): do not panic on pre-EPOCH files (#3922) 2026-02-14 10:25:48 +09:00
LICENSE-APACHE add license files 2019-06-01 17:25:29 +06:00
LICENSE-MIT add license files 2019-06-01 17:25:29 +06:00
README.md build(deps): bump time from 0.3.45 to 0.3.46 (#3893) 2026-01-28 08:10:27 +00:00

README.md

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));