Resolves #1507
Fix Issue where wildcard SSL certificates were not being named correctly.
Homestead.yaml
:
sites:
- map: foo.test
to: /home/vagrant/foo/public_html
wildcard: "yes"
oot@homestead:/etc/nginx/ssl# openssl x509 -subject -noout -in '*.foo.test.crt'
subject=O = Vagrant, C = UN, CN = *.foo.test
root@homestead:/etc/nginx/ssl# openssl x509 -subject -noout -in foo.test.crt
subject=O = Vagrant, C = UN, CN = foo.test
root@homestead:/etc/nginx/ssl#