mkcert is a simple tool for making locally-trusted development certificates. It requires no configuration.
This is a fork of FiloSottile's mkcert with more personal Subject Names.
The following default Subject Values cannot be changed, which is why this fork was created:
Subject Info | Default | Changeable |
---|---|---|
Organization | mkcert development certificate | ❌ |
Organizational | <username@fqdn> (<Full-Name>) |
❌ |
Common Name | mkcert <username@fqdn> (<Full-Name>) |
❌ |
Subject Info | Default | Changeable |
---|---|---|
Country | DE | ✅ (-root-country ) |
Organization | <Full-Name> CA |
✅(-root-org ) |
Organizational Unit | unset | ✅(-root-ou ) |
Common Name | <Full-Name> - ECC/RSA Root |
✅(-root-cn ) |
Also adds:
- ✅ Creation of Intermediate-Certificates
- ✅ intermediate-ready root certificate
- ✅ Recreating the root via
-root
flag (if for example expired) - ✅ Root certificates with P-384 instead of P-256 or RSA-4096 instead of RSA-2048
$ mkcert -install
Created a new local CA 💥
The local CA is now installed in the system trust store! ⚡️
The local CA is now installed in the Firefox trust store (requires browser restart)! 🦊
$ mkcert example.com "*.example.com" example.test localhost 127.0.0.1 ::1
Created a new certificate valid for the following names 📜
- "example.com"
- "*.example.com"
- "example.test"
- "localhost"
- "127.0.0.1"
- "::1"
The certificate is at "./example.com+5.pem" and the key at "./example.com+5.key" ✅
Using certificates from real certificate authorities (CAs) for development can be dangerous or impossible (for hosts like example.test
, localhost
or 127.0.0.1
), but self-signed certificates cause trust errors. Managing your own CA is the best solution, but usually involves arcane commands, specialized knowledge and manual steps.
mkcert automatically creates and installs a local CA in the system root store, and generates locally-trusted certificates. mkcert does not automatically configure servers to use the certificates, though, that's up to you.
Warning: the
rootCA.key
file that mkcert automatically generates gives complete power to intercept secure requests from your machine. Do not share it.
git clone https://github.com/FiloSottile/mkcert && cd mkcert
go build -ldflags "-X main.Version=$(git describe --tags)"
This fork also includes a build script for some major systems.
Run with:
build/build.sh
from project root
mkcert supports the following root stores:
- macOS system store
- Windows system store
- Linux variants that provide either
update-ca-trust
(Fedora, RHEL, CentOS) orupdate-ca-certificates
(Ubuntu, Debian, OpenSUSE, SLES) ortrust
(Arch)
- Firefox (macOS and Linux only)
- Chrome and Chromium
- Java (when
JAVA_HOME
is set)
To only install the local root CA into a subset of them, you can set the TRUST_STORES
environment variable to a comma-separated list. Options are: "system", "java" and "nss" (includes Firefox).
-days DAYS
Change the number of days a certificate is valid.
Default certificate validity: 1 year, 1 month
-months MONTHS
Change the number of months a certificate is valid.
Default certificate validity: 1 year, 1 month
-years YEARS
Change the number of years a certificate is valid.
Default certificate validity: 1 year, 1 month
-cert-file FILE, -key-file FILE, -p12-file FILE
Customize the output paths.
-client
Generate a certificate for client authentication.
-rsa
Generate a certificate with an RSA key.
(RSA-2048 for Leaf, RSA-4096 for Root/Intermediate)
-pkcs12
Generate a ".p12" PKCS #12 file, also know as a ".pfx" file,
containing certificate and key for legacy applications.
-csr CSR
Generate a certificate based on the supplied CSR. Conflicts with
all other flags and arguments except -install and -cert-file.
-inter
Generates an intermediate Certificate. This will not be used automatically
but can be used when the $CAROOT environment variable is set to its path
-inter-cn CommonName
Intermediate certificate Common Name
Defaults to: <Full Username> - Intermediate
-root
Forces the creation of a new root certificate (not needed for initial setup).
Can overwrite existing roots but backs up old ones.
-root-years YEARS
Change the number of years your root certificate will be valid for.
Default: 10 years
-root-org Organization-Name
Change the organizational name of the root certificate as displayed in the browser.
Defaults to: <Full Username>
Example: mkcert -root-org "MyOrg"
-root-cn CommonName
Change the CommonName of the root certificate.
Defaults to: <Full Username> - Root CA
Example: mkcert -root-cn "MyName Root E1"
-root-ou OrganizationalUnit
Set an Organizational Unit for the root certificate
Not set by default.
-root-country Country/Region
Change the country/region of the root certificate.
Defaults to Germany: DE
Example: mkcert -root-country "EU"
-CAROOT
Print the CA certificate and key storage location.
$CAROOT (environment variable)
Set the CA certificate and key storage location. (This allows
maintaining multiple local CAs in parallel.)
$TRUST_STORES (environment variable)
A comma-separated list of trust stores to install the local
root CA into. Options are: "system", "java" and "nss" (includes
Firefox). Autodetected by default.
Note: You must place these options before the domain names list.
mkcert -key-file key.pem -cert-file cert.pem example.com *.example.com
mkcert automatically generates an S/MIME certificate if one of the supplied names is an email address.
mkcert [email protected]
For the certificates to be trusted on mobile devices, you will have to install the root CA. It's the rootCA.pem
file in the folder printed by mkcert -CAROOT
.
On iOS, you can either use AirDrop, email the CA to yourself, or serve it from an HTTP server. After opening it, you need to install the profile in Settings > Profile Downloaded and then enable full trust in it.
For Android, you will have to install the CA and then enable user roots in the development build of your app. See this StackOverflow answer.
Node does not use the system root store, so it won't accept mkcert certificates automatically. Instead, you will have to set the NODE_EXTRA_CA_CERTS
environment variable.
export NODE_EXTRA_CA_CERTS="$(mkcert -CAROOT)/rootCA.pem"
The CA certificate and its key are stored in an application data folder in the user home. You usually don't have to worry about it, as installation is automated, but the location is printed by mkcert -CAROOT
.
If you want to manage separate CAs, you can use the environment variable $CAROOT
to set the folder where mkcert will place and look for the local CA files.
Installing in the trust store does not require the CA key, so you can export the CA certificate and use mkcert to install it in other machines.
- Look for the
rootCA.crt
file inmkcert -CAROOT
- copy it to a different machine
- set
$CAROOT
to its directory - run
mkcert -install
Remember that mkcert is meant for development purposes, not production, so it should not be used on end users' machines, and that you should not export or share rootCA.key
.