the control panel would not allow installing a certificate for a www redirect domain, fixes #475

이 커밋은 다음에 포함됨:
Joshua Tauberer
2015-07-02 10:53:54 +00:00
부모 5e43c394d5
커밋 e57e08088a
+1 -1
파일 보기
@@ -254,7 +254,7 @@ def create_csr(domain, ssl_key, env):
"-subj", "/C=%s/ST=/L=/O=/CN=%s" % (env["CSR_COUNTRY"], domain)])
def install_cert(domain, ssl_cert, ssl_chain, env):
if domain not in get_web_domains(env):
if domain not in get_web_domains(env) + get_default_www_redirects(env):
return "Invalid domain name."
# Write the combined cert+chain to a temporary path and validate that it is OK.