diff options
author | Matthew Fernandez <matthew.fernandez@gmail.com> | 2017-11-02 22:13:18 -0700 |
---|---|---|
committer | Matthew Fernandez <matthew.fernandez@gmail.com> | 2017-11-07 20:45:10 -0800 |
commit | 320908419788ca67f81cb869bed7249dab1be8a4 (patch) | |
tree | dff1a7d12784fa9cf689452f0a122c14c3c63550 /doc | |
parent | f68ab95164dc5ba4ca198e25b7401b06d690e699 (diff) | |
download | bugseverywhere-320908419788ca67f81cb869bed7249dab1be8a4.tar.gz |
remove serve-storage and HTTP storage driver
This functionality is now better fulfilled by using an off-the-shelf network
file system technology to share the BE object directory. This has the advantage
of a more comprehensive and integrated security model as well.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tutorial.txt | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/doc/tutorial.txt b/doc/tutorial.txt index 443ac2a..3a1b8e8 100644 --- a/doc/tutorial.txt +++ b/doc/tutorial.txt @@ -372,33 +372,13 @@ BE over HTTP ------------ Besides using BE to work directly with local VCS-based repositories, -you can use:: - - $ be serve-storage - -To serve a repository over HTTP. For example:: - - $ be serve-storage > server.log 2>&1 & - $ be --repo http://localhost:8000 list - -Of course, be careful about serving over insecure networks, since -malicous users could fill your disk with endless bugs, etc. You can -disabled write access by using the ``--read-only`` option, which would -make serving on a public network safer. - -Serving the storage interface is flexible, but it can be inefficient. -For example, a call to ``be list`` against a remote backend requires -all bug information to be transfered over the wire. As a faster -alternative, you may want to serve your repository at the command -level:: +you can serve your repository over HTTP at the command level:: $ be serve-commands > server.log 2>&1 & $ be --server http://localhost:8000 list -Take a look at the server logs to get a feel for the bandwidth you're -saving! Serving commands over insecure networks is at least as -dangerous as serving storage. Take appropriate precautions for your -network. +Serving commands over insecure networks can be dangerous. Take +appropriate precautions for your network. Driving the VCS through BE -------------------------- |