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

This commit is contained in:
Joshua Tauberer 2015-07-02 10:53:39 +00:00
parent 5e43c394d5
commit e57e08088a
1 changed files with 1 additions and 1 deletions

View File

@ -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.