Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

FROM neilpang/acme.sh:3.0.6
FROM neilpang/acme.sh:3.0.7

COPY ./ /app/

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ input=$1

case $input in
build)
docker build --no-cache --rm --tag ${image} .
docker build --platform linux/amd64 --no-cache --rm --tag ${image} .
;;
publish)
repository=tmaize/${image}
Expand Down
2 changes: 2 additions & 0 deletions config.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ verify_token: custom_token
# 必填,apisix admin host
apisix_host: http://apisix:9180
apisix_token: '******'
apisix_version: ''

# 必填,将自身服务注册到apisix的地址
self_apisix_host: http://apisix-acme:80
apisix_api_prefix: apisix_acme

# 必填,证书申请使用,证书快过期时会发送邮件
acme_mail: 'mail@example.com'
Expand Down
Loading