5.0 KiB
title | author | description | keywords | ms.author | manager | ms.date | ms.topic | ms.assetid | ms.technology | ms.prod | uid |
---|---|---|---|---|---|---|---|---|---|---|---|
Setting up HTTPS for development in ASP.NET Core | Rick-Anderson | Shows how to set up HTTPS for development in ASP.NET Core 2.0. | ASP.NET Core, SSL, HTTPS | riande | wpickett | 05/10/2017 | article | 94f2f1a4-7d46-45e2-a085-a57916e41724 | aspnet | asp.net-core | security/https |
Setting up HTTPS for development in ASP.NET Core
[!NOTE] This topic applies to ASP.NET Core 2.0 Preview 1
You can configure your application to use HTTPS during development to simulate HTTPS in your production environment. Enabling HTTPS may be required to enable integration with various identity providers (like Azure AD and Azure AD B2C).
On Windows if you’ve installed Visual Studio or IIS Express, the IIS Express Development Certificate will be in your LocalMachine certificate store. You can update your project properties in Visual Studio to use this certificate when running behind IIS Express.
- In Solution Explorer, right-click the project and select Properties.
- On the left pane, select Debug.
- Check Enable SSL
- Copy the SSL URL and paste it into the App URL
For development you can use the IIS Express Development Certificate if it is available, or create a new certificate for development purposes. The development certificate should be configured in the appsettings.Development.json
file so that it is not used in production:
{
"Certificates": {
"HTTPS": {
"Source": "Store",
"StoreLocation": "LocalMachine",
"StoreName": "My",
"Subject": "CN=localhost",
"AllowInvalid": true
}
}
}
An app with this configuration running in production will throw an exception saying "No certificate named 'HTTPS' found in configuration for the current environment (Production)". To switch the environment to Development
, set the ASPNETCORE_ENVIRONMENT
environment variable to Development
.
If you do not have the IIS Express Development Certificate installed, you can create a development certificate yourself. On Windows you can create a development certificate and add it to the trusted root store for the current user by running the following PowerShell commands in an elevated prompt:
$cert = New-SelfSignedCertificate -Subject localhost -DnsName localhost -FriendlyName "ASP.NET Core Development" -KeyUsage DigitalSignature -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.1")
Export-Certificate -Cert $cert -FilePath cert.cer
Import-Certificate -FilePath cert.cer -CertStoreLocation cert:/CurrentUser/Root
Kestrel on macOS and Linux
You can configure Kestrel to listen over HTTPS by configuring an endpoint with the desired IP address, port, and certificate. The certificate can be configured inline, or in the top-level Certificates
section and then referenced by name:
{
"Kestrel": {
"Endpoints": {
"LocalhostHttps": {
"Address": "127.0.0.1",
"Port": "43434",
"Certificate": "HTTPS"
}
}
}
}
On macOS and Linux you can create a self-signed certificate for HTTPS using OpenSSL:
openssl req -new -x509 -newkey rsa:2048 -keyout localhost.key -out localhost.cer -days 365 -subj /CN=localhost
openssl pkcs12 -export -out certificate.pfx -inkey localhost.key -in localhost.cer
Once the certificate.pfx
file has been generated, configure the HTTPS certificate in your appsettings.Development.json
file:
{
"Certificates": {
"HTTPS": {
"Source": "File",
"Path": "certificate.pfx"
}
}
}
You will also need to specify the passphrase for the certificate by setting the “Certificates:HTTPS:Password” config property. Passwords should not be stored in plain text. See Safe Storage of App Secrets During Development for appropriate handling of the certificate passphrase.
On macOS you can add the certificate to your keychain and change its trust settings so that it is trusted for HTTPS during development. To add the certificate to your keychain (the equivalent of the CurrentUser/My
store on Windows) run the following command:
security import certificate.pfx -k ~/Library/Keychains/login.keychain-db
And then to trust the certificate:
security add-trusted-cert localhost.cer
You can then configure your app to use this certificate in development like this:
{
"Certificates": {
"HTTPS": {
"Source": "Store",
"StoreLocation": "CurrentUser",
"StoreName": "My",
"Subject": "CN=localhost",
"AllowInvalid": true
}
}
}