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:
Zlatko Čalušić
2016-12-28 21:52:19 +01:00
parent c600048400
commit 2f0a16d8b7
2 changed files with 9 additions and 9 deletions
+7 -7
View File
@@ -1,12 +1,12 @@
# Restic Server # Rest Server
[![Build Status](https://travis-ci.org/zcalusic/restic-server.svg?branch=master)](https://travis-ci.org/zcalusic/restic-server) [![Build Status](https://travis-ci.org/restic/rest-server.svg?branch=master)](https://travis-ci.org/restic/rest-server)
[![Go Report Card](https://goreportcard.com/badge/github.com/zcalusic/restic-server)](https://goreportcard.com/report/github.com/zcalusic/restic-server) [![Go Report Card](https://goreportcard.com/badge/github.com/restic/rest-server)](https://goreportcard.com/report/github.com/restic/rest-server)
[![GoDoc](https://godoc.org/github.com/zcalusic/restic-server?status.svg)](https://godoc.org/github.com/zcalusic/restic-server) [![GoDoc](https://godoc.org/github.com/restic/rest-server?status.svg)](https://godoc.org/github.com/restic/rest-server)
[![License](https://img.shields.io/badge/license-BSD%20%282--Clause%29-003262.svg?maxAge=2592000)](https://github.com/zcalusic/restic-server/blob/master/LICENSE) [![License](https://img.shields.io/badge/license-BSD%20%282--Clause%29-003262.svg?maxAge=2592000)](https://github.com/restic/rest-server/blob/master/LICENSE)
[![Powered by](https://img.shields.io/badge/powered_by-Go-5272b4.svg?maxAge=2592000)](https://golang.org/) [![Powered by](https://img.shields.io/badge/powered_by-Go-5272b4.svg?maxAge=2592000)](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. purpose and is not intended to be used in production.
## Getting started ## Getting started
@@ -16,7 +16,7 @@ directory:
``` ```
go install 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 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] [Unit]
Description=Restic Server Description=Rest Server
After=syslog.target After=syslog.target
After=network.target After=network.target
@@ -7,7 +7,7 @@ After=network.target
Type=simple Type=simple
User=www-data User=www-data
Group=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 Restart=always
RestartSec=5 RestartSec=5
StartLimitInterval=0 StartLimitInterval=0