repo-updater/config.json.example

34 lines
699 B
Plaintext
Raw Normal View History

2024-09-19 22:36:34 +08:00
{
"repo": "<YOUR REPO>",
"region": "<YOUR REGION>",
"bucket": "<YOUR BUCKET>",
"secret_id": "<YOUR SECRET ID>",
"secret_key": "<YOUR SECRET KEY>",
"arch": ["aarch64"],
"keyring": "keyring.gpg",
"signer": "signer.key",
"signer_passphrase": "<YOUR SIGNER KEY PASSPHRASE>",
"max_sign_file": 8192,
"max_pkg_file": 134217728,
"upload_size": 1073741824,
"upload_files": 100,
"pkg_exts": [
".pkg.tar.gz",
".pkg.tar.xz",
".pkg.tar.zst"
],
"sign_exts": [
".pkg.tar.gz.sig",
".pkg.tar.xz.sig",
".pkg.tar.zst.sig"
],
"workspace": "/workspace",
"upload": "/upload",
"update_page": "upload.html",
"bind": "0.0.0.0",
"port": 8888,
"reserved_pkg": [
"<YOUR REPO>-keyring"
]
}