Skip to content

v10.14.0

Compare
Choose a tag to compare
@svpernova09 svpernova09 released this 11 Oct 17:50
· 319 commits to release since this release
e3a0396

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#