How can I create a self-signed cert for localhost?
Since this question is tagged with IIS and I can’t find a good answer on how to get a trusted certificate I will give my 2 cents about it: First use the command from @AuriRahimzadeh in PowerShell as administrator: New-SelfSignedCertificate -DnsName “localhost” -CertStoreLocation “cert:\LocalMachine\My” This is good but the certificate is not trusted and will … Read more