Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backout until Prelease 9 #33260

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions aspnetcore/includes/trustCertVSC.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
dotnet dev-certs https --trust
```

The preceding command requires .NET 9.0 or higher on Linux. For Linux on .NET 8 and earlier, see your Linux distribution's documentation for trusting a certificate.

The preceding command doesn't work on Linux. See your Linux distribution's documentation for trusting a certificate.
<!--
The preceding command requires .NET 9.0 or higher on Linux. For Linux on .NET 8 and earlier, see your Linux distribution's documentation for trusting a certificate.
-->
The preceding command displays the following dialog, provided the certificate was not previously trusted:

![Security warning dialog](~/getting-started/_static/cert.png)
Expand Down
3 changes: 3 additions & 0 deletions aspnetcore/security/docker-compose-https.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ dotnet dev-certs https -ep ${HOME}/.aspnet/https/aspnetapp.pfx -p $CREDENTIAL_PL
dotnet dev-certs https --trust
```

`dotnet dev-certs https --trust` is only supported on macOS and Windows. You need to trust certificates on Linux in the way that is supported by your distribution. It is likely that you need to trust the certificate in your browser.
<!--
On Linux, `dotnet dev-certs https --trust` requires .NET 9 and later. For Linux on .NET 8 and earlier, see your Linux distribution's documentation for trusting a certificate.
-->

In the preceding commands, replace `$CREDENTIAL_PLACEHOLDER$` with a password.

Expand Down
Loading