Merge pull request #4655 from ae-govau/unixsocket

Enhancement: option to send HTTP over unix socket
This commit is contained in:
Michael Eischer
2024-04-03 19:29:21 +00:00
committed by GitHub
9 changed files with 198 additions and 43 deletions

View File

@@ -0,0 +1,14 @@
Enhancement: support connection to rest-server using unix socket
Restic now supports connecting to rest-server using a unix socket for
rest-server version 0.13.0 or later.
This allows running restic as follows:
```
rest-server --listen unix:/tmp/rest.socket --data /path/to/data &
restic -r rest:http+unix:///tmp/rest.socket:/my_backup_repo/ [...]
```
https://github.com/restic/restic/issues/4287
https://github.com/restic/restic/pull/4655