30 lines
761 B
Plaintext
30 lines
761 B
Plaintext
# ===== Certd 基础配置 =====
|
||
|
||
# Certd 访问域名(必须修改)
|
||
CERTD_DOMAIN=cert.example.com
|
||
|
||
# Let's Encrypt 邮箱(必须修改)
|
||
CERTBOT_EMAIL=admin@example.com
|
||
|
||
# ===== 镜像配置 =====
|
||
|
||
# Certd 镜像(阿里云镜像,国内速度快)
|
||
CERTD_IMAGE=registry.cn-shenzhen.aliyuncs.com/handsfree/certd:latest
|
||
# 备选 Docker Hub 镜像:
|
||
# CERTD_IMAGE=greper/certd:latest
|
||
# 备选 GitHub Packages 镜像:
|
||
# CERTD_IMAGE=ghcr.io/certd/certd:latest
|
||
|
||
# ===== 目录配置 =====
|
||
|
||
# Certd 数据目录(SQLite 数据库 + 证书文件)
|
||
CERTD_DATA_DIR=/data/certd
|
||
|
||
# 备份目录
|
||
BACKUP_DIR=/var/backups/certd
|
||
|
||
# ===== 高级设置 =====
|
||
|
||
# 重置管理员密码(设为 true 重启后生效,然后改回 false)
|
||
RESET_ADMIN_PASSWD=false
|