diff options
author | Jakub Klinkovský <1289205+lahwaacz@users.noreply.github.com> | 2024-10-11 04:25:29 +0000 |
---|---|---|
committer | Jakub Klinkovský <1289205+lahwaacz@users.noreply.github.com> | 2024-10-11 04:25:29 +0000 |
commit | d0796aeb1a56da3b5721b491dbeaba8107e9a892 (patch) | |
tree | b190d219f4e7ab4255caf0932e8315bf01950b54 | |
parent | Fix OVERWRITE_FILES env var in README (diff) | |
download | miniserve-d0796aeb1a56da3b5721b491dbeaba8107e9a892.tar.gz miniserve-d0796aeb1a56da3b5721b491dbeaba8107e9a892.zip |
Fix override.conf example in README
ExecStart is a list, it needs to be cleared first.
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -473,6 +473,7 @@ In case you want to customize the particular flags that miniserve launches with, and set the `[Service]` part in the resulting `override.conf` file. For instance: [Service] + ExecStart= ExecStart=/usr/bin/miniserve --enable-tar --enable-zip --no-symlinks --verbose -i ::1 -p 1234 --title hello --color-scheme monokai --color-scheme-dark monokai -- %I Make sure to leave the `%I` at the very end in place or the wrong path might be served. You |