mirror of
https://github.com/restic/rest-server.git
synced 2025-12-07 09:36:13 -08:00
13 lines
494 B
Plaintext
13 lines
494 B
Plaintext
Enhancement: Support listening on a unix socket
|
|
|
|
To let rest-server listen on a unix socket, prefix the socket filename with `unix:` and pass it to the `--listen` option, for example `--listen unix:/tmp/foo`.
|
|
|
|
This is useful in combination with remote port forwarding to enable remote server to backup locally, e.g.
|
|
|
|
```
|
|
rest-server --listen unix:/tmp/foo &
|
|
ssh -R /tmp/foo:/tmp/foo user@host restic -r rest:http+unix:///tmp/foo:/repo backup
|
|
```
|
|
|
|
https://github.com/restic/rest-server/pull/272
|