|
2 | 2 |
|
3 | 3 | **compare / restore files from zfs snapshots** |
4 | 4 |
|
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_ |
6 | 5 |
|
7 | 6 | ## Description |
8 | 7 |
|
@@ -48,6 +47,16 @@ _under linux, you need the '-use-sudo' flag if you don't run it as root - see th |
48 | 47 | * -use-sudo: use sudo when executing os commands |
49 | 48 | * necessary under linux when running as non root |
50 | 49 | * 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> |
51 | 60 |
|
52 | 61 |
|
53 | 62 |
|
@@ -186,6 +195,20 @@ From here you can easy view / restore a deleted file. |
186 | 195 |
|
187 | 196 | ###0.0.X### |
188 | 197 |
|
| 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 | + |
189 | 212 | 0.0.9: |
190 | 213 | * show file size and modify timestamp in the file-browser |
191 | 214 | * list directories at first in the file-browser |
|
0 commit comments