Skip to content

Commit 187adfb

Browse files
committed
update README
1 parent 6b8fcd6 commit 187adfb

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
**compare / restore files from zfs snapshots**
44

5-
_Next features of `zfs-snap-diff`: [feature poll](https://github.com/j-keck/zfs-snap-diff/issues?q=is%3Aissue+is%3Aopen+label%3Afeature-poll). Please comment / vote_
65

76
## Description
87

@@ -48,6 +47,16 @@ _under linux, you need the '-use-sudo' flag if you don't run it as root - see th
4847
* -use-sudo: use sudo when executing os commands
4948
* necessary under linux when running as non root
5049
* adjust sudo rules (see [doc/etc/sudoers.d/zfs-snap-diff](https://github.com/j-keck/zfs-snap-diff/blob/master/doc/etc/sudoers.d/zfs-snap-diff))
50+
* -tls: use tls encryption
51+
* use the additional parameters '-cert' and '-key' to provide the certificate and private key
52+
* to create a self signed key / certificate use:
53+
54+
openssl genrsa -out server.key 2048
55+
openssl req -new -x509 -sha256 -key server.key -out server.pem -days 3650
56+
57+
* and start `zfs-snap-diff` per
58+
59+
zfs-snap-diff -tls -cert server.pem -key server-key <ZFS_NAME>
5160

5261

5362

@@ -186,6 +195,20 @@ From here you can easy view / restore a deleted file.
186195

187196
###0.0.X###
188197

198+
0.0.10:
199+
* use relative url for service endpoints
200+
* to use zfs-snap-diff behind a reverse proxy
201+
* minimal example config snipped for nginx:
202+
203+
location /zfs-snap-diff/ {
204+
proxy_pass http://localhost:12345/;
205+
}
206+
207+
* optional tls encryption
208+
* listen address per '-l' flag configurable
209+
210+
[all commits from 0.0.9...0.0.10](https://github.com/j-keck/zfs-snap-diff/compare/0.0.9...0.0.10)
211+
189212
0.0.9:
190213
* show file size and modify timestamp in the file-browser
191214
* list directories at first in the file-browser

0 commit comments

Comments
 (0)