[DOCKER] TODOify mail server certificate

This commit is contained in:
Diogo Peralta Cordeiro 2021-09-23 15:47:28 +01:00
부모 be8610a7a1
커밋 3ef1077f90
로그인 계정: diogo
GPG 키 ID: 18D2D35001FBFAB0
2개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -5,7 +5,9 @@
. bootstrap.env
sed -ri "s/%hostname%/${MAIL_DOMAIN}/" /etc/nginx/conf.d/challenge.conf
# TODO: Add mail domain when implemented
rm -f /etc/nginx/conf.d/default.conf
sed -ri "s/%hostname%/${WEB_DOMAIN}/" /etc/nginx/conf.d/challenge.conf
nginx
@ -59,4 +61,5 @@ obtain_certificates () {
}
obtain_certificates "${WEB_DOMAIN}"
obtain_certificates "${MAIL_DOMAIN}"
#TODO: Uncomment when implemented (:
#obtain_certificates "${MAIL_DOMAIN}"

파일 보기

@ -2,7 +2,7 @@
# There's no point in keeping default nginx conf
# Furthermore, this is an issue when a developer is using localhost as the instance domain
rm /etc/nginx/conf.d/default.conf
rm -f /etc/nginx/conf.d/default.conf
# Can't do sed inplace, because the file would be busy
cat /var/nginx/social.conf | \