This is my caddyfile
1837jewel.com {
root /var/www/html/
}
*.1837jewel.com {
tls {
max_certs 5000
}
root /var/www/html/
}
1837jewel.com worked
*.1837jewel.com sometimes works and sometimes does not work. Chrome browser gives warning.
The domain with name.com default nameservers.
DNS Records:
A *.1837jewel.com 104.248.215.58
A 1837jewel.com 104.248.215.58
I guess I need a wildcard certificate for all subdomains. Anyone has a code example of this?
This article tells Environment Variables to Set. Where do I do this? in a caddyfile?
*.xxx.com {
proxy / https://example.com
tls wildcard.crt wildcard.key
}
Does this code work?