aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--README.md14
2 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index df2dd4b..09075bb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
+- Fix panic when using TLS in some instances [#670](https://github.com/svenstaro/miniserve/issues/670) (thanks @aliemjay)
## [0.18.0] - 2021-10-26
- Add raw mode and raw mode footer display [#508](https://github.com/svenstaro/miniserve/pull/508) (thanks @Jikstra)
diff --git a/README.md b/README.md
index a2dea4a..08ce928 100644
--- a/README.md
+++ b/README.md
@@ -225,7 +225,7 @@ On [Termux](https://termux.com/)
chmod +x miniserve-osx
./miniserve-osx
-Alternatively install with [Homebrew](https://brew.sh/).
+Alternatively install with [Homebrew](https://brew.sh/):
brew install miniserve
miniserve
@@ -234,14 +234,22 @@ Alternatively install with [Homebrew](https://brew.sh/).
miniserve-win.exe
+Alternatively install with [Scoop](https://scoop.sh/):
+
+ scoop install miniserve
+
**With Cargo**: Make sure you have a recent version of Rust. Then you can run
cargo install --locked miniserve
miniserve
-**With Docker:** If you prefer using Docker for this, run
+**With Docker:** Make sure the Docker daemon is running and then run
+
+ docker run -v /tmp:/tmp -p 8080:8080 --rm -it docker.io/svenstaro/miniserve /tmp
+
+**With Podman:** Just run
- docker run -v /tmp:/tmp -p 8080:8080 --rm -it svenstaro/miniserve /tmp
+ podman run -v /tmp:/tmp -p 8080:8080 --rm -it docker.io/svenstaro/miniserve /tmp
## Shell completions