Merge pull request #19936 from hgl/acme
haproxy: use .crt as extension for certificates
This commit is contained in:
commit
50562422e7
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=haproxy
|
PKG_NAME:=haproxy
|
||||||
PKG_VERSION:=2.6.6
|
PKG_VERSION:=2.6.6
|
||||||
PKG_RELEASE:=$(AUTORELEASE)
|
PKG_RELEASE:=103
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://www.haproxy.org/download/2.6/src
|
PKG_SOURCE_URL:=https://www.haproxy.org/download/2.6/src
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
case $ACTION in
|
case $ACTION in
|
||||||
issued|renewed)
|
issued|renewed)
|
||||||
cat \
|
cat \
|
||||||
"/etc/ssl/acme/$main_domain.fullchain.cer" \
|
"/etc/ssl/acme/$main_domain.fullchain.crt" \
|
||||||
"/etc/ssl/acme/$main_domain.key" \
|
"/etc/ssl/acme/$main_domain.key" \
|
||||||
>"/etc/ssl/acme/$main_domain.combined.cer"
|
>"/etc/ssl/acme/$main_domain.combined.crt"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue