I am trying to run two applications on my domain. I have figured out how to get a single cert for
I have this refreshing automatically. Yay.
Now, I’d like to have the following set up in nginx:
http {
# SSL cert setup
server {
server_name a.domain.com;
}
server {
server_name b.domain.com;
}
}
so that I don’t have to do awkward “if” statements in my nginx configuration, serving one app or the other.
Is this possible with certbot?
