From ea2b4697f555e037f56b6992004d6fcf90fa71d7 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Wed, 20 May 2026 14:11:02 -0600 Subject: [PATCH] fix: toml.example contained wrong defaults --- deploy/pkgstash.toml.example | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/deploy/pkgstash.toml.example b/deploy/pkgstash.toml.example index 8019676..71a0e9b 100644 --- a/deploy/pkgstash.toml.example +++ b/deploy/pkgstash.toml.example @@ -1,10 +1,11 @@ -cache_root = "/home/ewpt3ch/dev/pkgstash/tmprepo" -mirror_urls = ["https://us.mirrors.cicku.me/archlinux/", +env_file = "/etc/pkgstash/pkgstash.env" +cache_root = "/srv/pkgstash" +mirror_urls = [ "https://losangeles.mirror.pkgbuild.com/", "https://mirror.givebytes.net/archlinux/", "https://arch.mirror.constant.com/", ] # array of upstream repos this server caches see pacman.conf # or pacman docs for more info -mirrored_repos = ["core", "extra"] +mirrored_repos = ["core", "extra", "multilib"] port = "8090"