Open ssl.conf in a text editor.
Edit the domain(s) listed under the [alt_names] section so that they match the local domain name you want to use for your project, e.g.
DNS.1 = my-project.dev
Additional FQDNs can be added if required:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>destination</key> | |
| <string>upload</string> | |
| <key>method</key> | |
| <string>app-store</string> | |
| <key>provisioningProfiles</key> | |
| <dict> |
| // https://stackoverflow.com/a/45068046/5536516 | |
| import Foundation | |
| func kernelBootTime() -> timeval { | |
| var mib = [ CTL_KERN, KERN_BOOTTIME ] | |
| var bootTime = timeval() | |
| var bootTimeSize = MemoryLayout<timeval>.size |
| //Gist note this is snippet from root build.gradle in project with subprojects | |
| checkstyle { | |
| // use one common config file for all subprojects | |
| configFile = project(':').file('config/checkstyle/checkstyle.xml') | |
| configProperties = [ "suppressionFile" : project(':').file('config/checkstyle/suppressions.xml')] | |
| } |