]> arthur.barton.de Git - bup.git/blob - Documentation/bup-web.md
Documentation/bup-tag.md: fix spelling error "retreive"
[bup.git] / Documentation / bup-web.md
1 % bup-ftp(1) Bup %BUP_VERSION%
2 % Joe Beda <jbeda@gmail.com>
3 % %BUP_DATE%
4
5 # NAME
6
7 bup-web - Start web server to browse bup repositiory
8
9 # SYNOPSIS
10
11 bup web [[hostname]:port]
12
13 # DESCRIPTION
14
15 `bup web` starts a web server that can browse bup repositories. The file
16 hierarchy is the same as that shown by `bup-fuse`(1), `bup-ls`(1) and
17 `bup-ftp`(1).
18
19 `hostname` and `port` default to 127.0.0.1 and 8080, respectively, and hence
20 `bup web` will only offer up the web server to locally running clients. If
21 you'd like to expose the web server to anyone on your network (dangerous!) you
22 can omit the bind address to bind to all available interfaces: `:8080`.
23
24 # EXAMPLE
25
26     $ bup web
27     Serving HTTP on 127.0.0.1:8080...
28     ^C
29
30     $ bup web :8080
31     Serving HTTP on 0.0.0.0:8080...
32     ^C
33
34
35 # SEE ALSO
36
37 `bup-fuse`(1), `bup-ls`(1), `bup-ftp`(1), `bup-restore`(1)
38
39
40 # BUP
41
42 Part of the `bup`(1) suite.