actix-web
actix-web copied to clipboard
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
**Expected Behavior** When uploading a file larger than the allowed multipart file size limit (50 MB in this case), the server should promptly respond with an appropriate error message, such...
Hello, and first, thank you for this great library ! Recently, I published a blog post titled [*I’m sorry I forked you*](https://sql.ophir.dev/blog.sql?post=I%E2%80%99m%20sorry%20I%20forked%20you). In the title, the second character is a...
## PR Type PR_TYPE ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...
Hi, This add a new feature to the `Logger` middleware to set the level of the log. # Example ` Logger::default().level(Level::Debug);` This would ideally go together with https://github.com/actix/actix-web/pull/3086 ## PR...
## PR Type CI ## PR Checklist - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been added / updated. - [x] A...
## Expected Behavior Reverse proxies have the ability to deploy specific routes behind a URL-prefix. This allows multiple webservers to serve on the same site without having to adapt their...
As https://github.com/actix/actix-web/discussions/3213 wrote, something like `customize().cookie(...)`. I'm not sure if I need to write more details?
## Expected Behavior When navigating to nonexistent route in a scope, I'd expect to get the nearest default route that is defined. ## Current Behavior Currently, when a scope does...
```rs Files::new("/", EXAMPLES_DIR) .path_filter(|n, _| { println!("{:?}", n); let s = n.to_str().unwrap(); if s == "lib.rs" || s == "" { true } else { false } }) .show_files_listing(), ```...
## Expected Behavior URL dispatch works in the same way regardless of configuration order. ## Current Behavior If a handler with Path extractor is registered before the nested endpoint it...