Reputation: 2927
Simple question, can I have in the same machine 2 web applications, running in different subdomains with the same ssl certificate?
ex:
m.example.com
z.example.com
Same Machine, same IP!
Upvotes: 3
Views: 6405
Reputation: 122719
You can use either:
*.mydomain.yy
), although their usage is discouraged,m.domain.yy
and z.domain.yy
).For reference, this is documented in RFC 2818 (section 3.1) and RFC 6125.
How the web server is then configured to dispatch the request to the appropriate web application depends on which web server you are using (as @Brian said in a comment to your question).
Upvotes: 8
Reputation: 5533
with a wildcard ssl certificate http://www.comodo.com/e-commerce/ssl-certificates/wildcard-ssl.php
Upvotes: 1