Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-03-20 | Add --directory-size flag to enable directory size calculation | Sven-Hendrik Haase | 1 | -0/+4 | |
This is turned off by default as it's potentially quite IO intensive, especially on HDDs. | |||||
2025-03-07 | Add asynchronous directory size counting | Sven-Hendrik Haase | 1 | -2/+8 | |
This is enabled by default and without an option to toggle it off as it's asynchronous and shouldn't block the server thread. | |||||
2025-03-07 | Upgrade to Rust 2024 edition | Sven-Hendrik Haase | 1 | -2/+2 | |
2025-03-07 | Add healthcheck route at /__miniserve_internal/healthcheck | Sven-Hendrik Haase | 1 | -7/+13 | |
Fixes #1435 | |||||
2025-03-06 | change cli args | Lzzzt | 1 | -1/+6 | |
Signed-off-by: Lzzzt <liuzitao0123@gmail.com> | |||||
2025-03-03 | make the option effect raw mode | Lzzzt | 1 | -2/+2 | |
Signed-off-by: Lzzzt <liuzitao0123@gmail.com> | |||||
2025-03-03 | Show File Size in Bytes | Lzzzt | 1 | -0/+4 | |
Add a cli option that show file size in bytes rather than KB or MB, etc. | |||||
2025-03-02 | feat: validate temp dir exists through `value_parser` and fixed clippy issues | Alec Di Vito | 1 | -7/+1 | |
2025-02-22 | feat: address comments; add in new argument (`temp-directory`); add comments ↵ | Alec Di Vito | 1 | -0/+10 | |
to upload code; add tests | |||||
2025-02-06 | move favicon and css to stable, non-random routes | Lukas Stabe | 1 | -4/+4 | |
2025-02-05 | add read-only webdav support | Lukas Stabe | 1 | -0/+4 | |
2025-01-03 | Use Self where possible | adamnemecek | 1 | -1/+1 | |
2024-06-09 | Bump rustls to v0.23 | Sven-Hendrik Haase | 1 | -15/+6 | |
2024-06-09 | Remove explicit dependency on http | Sven-Hendrik Haase | 1 | -1/+1 | |
We now use the one supplied by actix-web. | |||||
2024-06-06 | feat: Added HTML and Javascript progress bar when uploading files | Alec Di Vito | 1 | -0/+4 | |
2024-01-29 | add `--disable-indexing` cli flag to completely disable directory indexing | Carson McManus | 1 | -0/+4 | |
2024-01-26 | Fix inaccurate uses of `sanitize_path` | cyqsimon | 1 | -2/+2 | |
2024-01-16 | Add option for compress response | zuisong | 1 | -0/+4 | |
2024-01-13 | Clean up default order function | Sven-Hendrik Haase | 1 | -22/+4 | |
I removed the stringly typing as we already have enums for this that we can make use of. | |||||
2024-01-13 | Set default sorting order and method with arguments | elandsborough | 1 | -0/+27 | |
2023-10-10 | Fix incorrect conditional compilation | Sven-Hendrik Haase | 1 | -3/+1 | |
2023-09-05 | Fix clippy complaints | cyqsimon | 1 | -1/+1 | |
2023-09-05 | Minor code style refactors | cyqsimon | 1 | -12/+16 | |
2023-08-21 | Fix MIPS compile | Sven-Hendrik Haase | 1 | -3/+2 | |
2023-08-06 | Add pretty urls | Norberto Lopes | 1 | -0/+8 | |
This adds a new flag namely `--pretty-urls` that when enabled will serve the equivalent `.html` if it exists. Very much the same approach that [`netlify` uses](https://docs.netlify.com/site-deploys/post-processing/). It can be quite useful when having hrefs like `/about` serve `/about.html`. | |||||
2023-07-21 | Add ability to read auth from file | Proudmuslim | 1 | -2/+14 | |
2023-07-10 | Create shared file utiity module | cyqsimon | 1 | -1/+1 | |
2023-04-16 | Add EC key support (closes #1080) | Sven-Hendrik Haase | 1 | -1/+3 | |
2022-12-30 | Run cargo fmt | Sven-Hendrik Haase | 1 | -30/+29 | |
2022-12-19 | Fix lints | Sven-Hendrik Haase | 1 | -2/+2 | |
2022-10-12 | Upgrade clap to v4 | Sven-Hendrik Haase | 1 | -2/+3 | |
2022-09-19 | Fixed clippy issue (single-char string to char) | Jonas Diemer | 1 | -1/+1 | |
2022-09-19 | Changed handling of allowed path to fix Windows | Jonas Diemer | 1 | -2/+8 | |
2022-09-18 | fix lint errors | Jonas Diemer | 1 | -2/+2 | |
2022-09-18 | cargo fmt | Jonas Diemer | 1 | -2/+7 | |
2022-09-18 | sanitize allowed upload paths for cases like ./dir | Jonas Diemer | 1 | -1/+2 | |
2022-09-18 | Use argument -u instead of --allowed-upload-dir | Jonas Diemer | 1 | -2/+2 | |
2022-09-18 | Clarity of comment | Jonas Diemer | 1 | -1/+1 | |
Co-authored-by: Sven-Hendrik Haase <svenstaro@gmail.com> | |||||
2022-09-18 | Renamed option for more clarity | Jonas Diemer | 1 | -2/+2 | |
2022-09-18 | Switched to use of PathBuf, fixed for subdirs | Jonas Diemer | 1 | -1/+1 | |
2022-09-18 | Added option restrict-upload-dir | Jonas Diemer | 1 | -0/+4 | |
2022-08-14 | Satisfy cargo fmt | Gaurav | 1 | -1/+1 | |
2022-08-14 | Add `--readme` flag to cli | Gaurav | 1 | -0/+4 | |
2022-07-28 | Apply suggestions from code review | zhoupeiheng | 1 | -0/+3 | |
2022-07-28 | test: check_static_file_route_pattern | zhoupeiheng | 1 | -2/+8 | |
2022-07-28 | fix: static file support route_prefix | zhoupeiheng | 1 | -2/+5 | |
2022-06-26 | Create directory (#781) | Sheepy | 1 | -0/+4 | |
* Add ability to make directory Frontend for making directories Fix potential security vulnerability (CWE-23) Add tests Update README.md Disallow using parent directories altogether Fix formatting Fix clippy warnings Address review comments Update README.md Change `making` to `creation` Co-authored-by: Sven-Hendrik Haase <svenstaro@gmail.com> Have make directory flag require file upload flag Address review comments * Disallow uploading files and making directories through symlinks when disabled * Add test * Clippy formatting changes * Add test doc comment | |||||
2022-05-23 | Flip usage of theme selector showing functionality added in last commit | Sven-Hendrik Haase | 1 | -4/+4 | |
This is so it doesn't break current configurations. Let's not surprise the users. | |||||
2022-05-23 | Add configuration `change-theme` (#805) | FLAMINGO | 1 | -0/+4 | |
Add configuration `change-theme`Add configuration `change-theme` | |||||
2022-03-30 | Do not use the route for the favicon and stylesheet | Stefan Huber | 1 | -2/+2 | |
In order to no leak the random generated route, we must not use it as prefix in the 404 error page. Indeed we can just use a top-level path for these files. |