Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ Example — restrict a backup server to no-delete access:

.. code-block:: bash

python3 -m borgstore.server.rest --host 127.0.0.1 --port 5618 \\
--username user --password pass \\
--backend file:///home/user/repos/repo1 \\
python3 -m borgstore.server.rest --host 127.0.0.1 --port 5618 \
--username user --password pass \
--backend file:///home/user/repos/repo1 \
--permissions borgbackup-no-delete

Custom JSON permissions
Expand All @@ -359,7 +359,7 @@ Hierarchical rules (list-only at root, read/write in ``data/``)::
Quota
~~~~~

The REST server, when used with the ``file:`` backend, optionally supports
The REST server, when used with the ``file:`` backend, optionally supports
quota tracking and enforcement.

Use the ``--quota`` argument to set a maximum storage size in bytes (default is
Expand All @@ -372,9 +372,9 @@ Example — limit storage to 1 GiB:

.. code-block:: bash

python3 -m borgstore.server.rest --host 127.0.0.1 --port 5618 \\
--username user --password pass \\
--backend file:///tmp/teststore \\
python3 -m borgstore.server.rest --host 127.0.0.1 --port 5618 \
--username user --password pass \
--backend file:///tmp/teststore \
--quota 1073741824


Expand Down
Loading