diff options
author | Norberto Lopes <nlopes.ml@gmail.com> | 2023-08-04 16:00:11 +0000 |
---|---|---|
committer | Norberto Lopes <nlopes.ml@gmail.com> | 2023-08-06 08:34:08 +0000 |
commit | 1fd606031d018854d2b8d08d30863105567fcccc (patch) | |
tree | ad263938cd57951c519f3351b7ca9d9a480c7f4f /src/args.rs | |
parent | Add CHANGELOG entry for #1191 (diff) | |
download | miniserve-1fd606031d018854d2b8d08d30863105567fcccc.tar.gz miniserve-1fd606031d018854d2b8d08d30863105567fcccc.zip |
Add pretty urls
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`.
Diffstat (limited to '')
-rw-r--r-- | src/args.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/args.rs b/src/args.rs index f7b42f1..590ac14 100644 --- a/src/args.rs +++ b/src/args.rs @@ -41,6 +41,14 @@ pub struct CliArgs { #[arg(long, requires = "index", env = "MINISERVE_SPA")] pub spa: bool, + /// Activate Pretty URLs mode + /// + /// This will cause the server to serve the equivalent `.html` file indicated by the path. + /// + /// `/about` will try to find `about.html` and serve it. + #[arg(long, env = "MINISERVE_PRETTY_URLS")] + pub pretty_urls: bool, + /// Port to use #[arg( short = 'p', |