Fix readme.

This commit is contained in:
Naoki Kosaka 2018-12-23 15:19:10 +09:00
parent e0c0f1a68d
commit 261a14e343
3 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ jobs:
command: |
go get -u github.com/golang/dep/cmd/dep
dep ensure
go test -coverprofile=coverage.txt . ./worker ./cli
go test -coverprofile=coverage.txt -covermode=atomic -p 1 . ./worker ./cli
bash <(curl -s https://codecov.io/bash)
docker:
docker:

View File

@ -33,8 +33,8 @@ var uaString string
func initConfig() {
viper.BindEnv("actor_pem")
viper.BindEnv("relay_domain")
viper.BindEnv("redis_url")
viper.BindEnv("relay_bind")
viper.BindEnv("redis_url")
hostURL, _ = url.Parse("https://" + viper.GetString("relay_domain"))
hostPrivatekey, _ = keyloader.ReadPrivateKeyRSAfromPath(viper.GetString("actor_pem"))
redisClient := redis.NewClient(&redis.Options{

View File

@ -26,6 +26,7 @@ See [GitHub wiki](https://github.com/yukimochi/Activity-Relay/wiki)
- `ACTOR_PEM` (ex. `/actor.pem`)
- `RELAY_DOMAIN` (ex. `relay.toot.yukimochi.jp`)
- `RELAY_SERVICENAME` (ex. `YUKIMOCHI Toot Relay Service`)
- `RELAY_BIND` (ex. `0.0.0.0:8080`)
- `REDIS_URL` (ex. `127.0.0.1:6379`)