docs: improve new target page information [skip ci]
Diff
docs/content/configuration/config-file.md | 4 ++++
docs/content/download-and-install.md | 2 +-
docs/content/features/docker.md | 2 ++
tests/toml/config.toml | 4 ++--
4 files changed, 9 insertions(+), 3 deletions(-)
@@ -4,6 +4,10 @@
It's disabled by default and can be enabled by passing a _string file path_ via the `-w, --config-file` option or its equivalent [SERVER_CONFIG_FILE](./../configuration/environment-variables.md#server_config_file) env.
!!! info "The default config file path is checked at startup time"
If using the default config file path (`./config.toml`), SWS will attempt to load it at startup time.
If it is not found or can not be loaded then SWS will continue using the server defaults.
## TOML File (Manifest)
Below is just an example showing all features with their default values.
@@ -19,7 +19,7 @@ See also [the release history](https://github.com/static-web-server/static-web-s
### Binary installer (Linux/BSDs)
Use our binary installer if your package manager is not supported.
Use the binary installer if your package manager is not supported.
```sh
@@ -15,6 +15,8 @@ All Docker images are [Multi-Arch](https://www.docker.com/blog/how-to-rapidly-bu
- `linux/arm/v6`
- `linux/arm/v7`
- `linux/arm64`
- `linux/ppc64le`
- `linux/s390x`
!!! tip "SWS statically-linked binary"
All the Docker images use the SWS statically-linked binary, meaning that the binary is highly optimized, performant, and dependency-free thanks to [musl libc](https://www.musl-libc.org/).
@@ -15,8 +15,8 @@ cache-control-headers = true
compression = true
page404 = "docker/public/404.html"
page50x = "docker/public/50x.html"
page404 = "./404.html"
page50x = "./50x.html"
http2 = false