16 lines
621 B
TOML
16 lines
621 B
TOML
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 <core, extra, multilib>
|
|
mirrored_repos = ["core", "extra"]
|
|
port = "8090"
|
|
# cache eviction parameters, size expressed in <x>GB, 0 means no limit
|
|
# time in a duration in hours: <x>h, defaults to 1 year: 8760h
|
|
max_cache_size = "10GB"
|
|
max_cache_age = "8760h"
|