Created
November 29, 2023 16:13
-
-
Save Tynael/d6c2ab605ed5e57efedf42da237d4e4d to your computer and use it in GitHub Desktop.
v3.ext file used by makecert.bat file to generate an SSL certificate with some specific configurations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
authorityKeyIdentifier=keyid,issuer | |
basicConstraints=CA:FALSE | |
keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment | |
subjectAltName = @alt_names | |
[alt_names] | |
DNS.1 = localhost | |
DNS.2 = *.localvaren.com | |
DNS.3 = localvaren.com | |
DNS.4 = 127.0.0.1 | |
DNS.5 = 127.0.0.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example used in https://neutrondev.com/how-to-set-up-ssl-certificate-localhost-xampp/