mirror of
https://github.com/restic/rest-server.git
synced 2025-12-07 09:36:13 -08:00
Restic server shall be called Rest server from now on
The repo moved from github.com/zcalusic/restic-server to the new home github.com/restic/rest-server
This commit is contained in:
14
README.md
14
README.md
@@ -1,12 +1,12 @@
|
||||
# Restic Server
|
||||
# Rest Server
|
||||
|
||||
[](https://travis-ci.org/zcalusic/restic-server)
|
||||
[](https://goreportcard.com/report/github.com/zcalusic/restic-server)
|
||||
[](https://godoc.org/github.com/zcalusic/restic-server)
|
||||
[](https://github.com/zcalusic/restic-server/blob/master/LICENSE)
|
||||
[](https://travis-ci.org/restic/rest-server)
|
||||
[](https://goreportcard.com/report/github.com/restic/rest-server)
|
||||
[](https://godoc.org/github.com/restic/rest-server)
|
||||
[](https://github.com/restic/rest-server/blob/master/LICENSE)
|
||||
[](https://golang.org/)
|
||||
|
||||
Restic Server is a sample server that implements restic's REST backend API. It has been developed for demonstration
|
||||
Rest Server is a sample server that implements restic's REST backend API. It has been developed for demonstration
|
||||
purpose and is not intended to be used in production.
|
||||
|
||||
## Getting started
|
||||
@@ -16,7 +16,7 @@ directory:
|
||||
|
||||
```
|
||||
go install
|
||||
restic-server -path /user/home/backup
|
||||
rest-server -path /user/home/backup
|
||||
```
|
||||
|
||||
The server uses an `.htpasswd` file to specify users. You can create such a file at the root of the persistence
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[Unit]
|
||||
Description=Restic Server
|
||||
Description=Rest Server
|
||||
After=syslog.target
|
||||
After=network.target
|
||||
|
||||
@@ -7,7 +7,7 @@ After=network.target
|
||||
Type=simple
|
||||
User=www-data
|
||||
Group=www-data
|
||||
ExecStart=/usr/local/bin/restic-server -path /tmp/restic
|
||||
ExecStart=/usr/local/bin/rest-server -path /tmp/restic
|
||||
Restart=always
|
||||
RestartSec=5
|
||||
StartLimitInterval=0
|
||||
Reference in New Issue
Block a user