From 43205337c1696f64985f93614f7828161e70381b Mon Sep 17 00:00:00 2001 From: Tyler Date: Mon, 15 Aug 2022 02:41:31 -0400 Subject: [PATCH] Update README --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c32821..02722c2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This repository contains a redirect service for Armbian downloads, apt, etc. It uses multiple current technologies and best practices, including: -- Go 1.17/1.18 +- Go 1.19 - GeoIP + Distance routing - Server weighting, pooling (top x servers are served instead of a single one) - Health checks (HTTP, TLS) @@ -52,12 +52,19 @@ cacheSize: 1024 # server = full url or host+path # weight = int # optional: latitude, longitude (float) +# optional: protocols (list/array) servers: - server: armbian.12z.eu/apt/ - server: armbian.chi.auroradev.org/apt/ weight: 15 latitude: 41.8879 longitude: -88.1995 + # Example of a server with additional protocols (rsync) + # Useful for defining servers which could be used for rsync sources + - server: mirrors.dotsrc.org/armbian-apt/ + weight: 15 + protocols: + - rsync ```` ## API