名称大小修改时间
dists/-2026-08-19 15:27:52
pool/-2026-08-19 15:27:49
README.md1.1 KB2026-09-03 10:42:05
index.html278 B2026-08-19 15:27:52
public-key.asc1.6 KB2026-08-19 15:27:49
public-key.gpg1.1 KB2026-08-19 15:27:49

Debian 源

GPG 密钥

curl -fsSL https://deb.ksyaki.com/public-key.asc \
  | gpg --dearmor --batch --yes -o /usr/share/keyrings/ksyaki.gpg

Nginx

加入自定义模块的nginx的debian12/13源

已编译进入nginx的模块

Debian 13

tee /etc/apt/preferences.d/99-ksyaki-nginx.pref >/dev/null <<'EOF'
Package: nginx nginx-* libnginx-mod-*
Pin: origin deb.ksyaki.com
Pin-Priority: 1001
EOF

echo "deb [signed-by=/usr/share/keyrings/ksyaki.gpg] https://deb.ksyaki.com/nginx trixie main" \
  | tee /etc/apt/sources.list.d/ksyaki-nginx.list

apt update
apt install nginx

Debian 12

tee /etc/apt/preferences.d/99-ksyaki-nginx.pref >/dev/null <<'EOF'
Package: nginx nginx-* libnginx-mod-*
Pin: origin deb.ksyaki.com
Pin-Priority: 1001
EOF

echo "deb [signed-by=/usr/share/keyrings/ksyaki.gpg] https://deb.ksyaki.com/nginx bookworm main" \
  | tee /etc/apt/sources.list.d/ksyaki-nginx.list

apt update
apt install nginx