Skip to content

Commit

Permalink
Fix broken links (#32814)
Browse files Browse the repository at this point in the history
  • Loading branch information
guardrex committed Jun 11, 2024
1 parent 374e262 commit 90ad505
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
5 changes: 1 addition & 4 deletions aspnetcore/fundamentals/minimal-apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,7 @@ See <xref:fundamentals/minimal-apis/responses> for more examples.

## Filters

See:

* <xref:fundamentals/minimal-apis/min-api-filters>
* [A deep dive into endpoint filters](https://blog.safia.rocks/endpoint-filters-exploration.html)
For more information, see <xref:fundamentals/minimal-apis/min-api-filters>.

## Authorization

Expand Down
1 change: 0 additions & 1 deletion aspnetcore/fundamentals/minimal-apis/min-api-filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ In some scenarios, it might be necessary to apply the same filter logic for both

## Additional Resources

* [A deep dive into endpoint filters](https://blog.safia.rocks/endpoint-filters-exploration.html)
* [View or download sample code](https://github.com/aspnet/Docs/tree/main/aspnetcore/fundamentals/minimal-apis/min-api-filters/7samples) ([how to download](xref:index#how-to-download-a-sample))
* [ValidationFilterRouteHandlerBuilderExtensions](https://github.com/DamianEdwards/MinimalApis.Extensions/blob/main/src/MinimalApis.Extensions/Filters/ValidationFilterRouteHandlerBuilderExtensions.cs) Validation extension methods.
* <xref:tutorials/min-web-api>
Expand Down
2 changes: 1 addition & 1 deletion aspnetcore/host-and-deploy/iis/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ The files can be found by searching for `aspnetcore` in the `applicationHost.con

## Install Web Deploy when publishing with Visual Studio

When deploying apps to servers with [Web Deploy](/iis/install/installing-publishing-technologies/installing-and-configuring-web-deploy-on-iis-80-or-later), install the latest version of Web Deploy on the server. To install Web Deploy, obtain an installer from the [Microsoft Download Center](https://www.microsoft.com/download/details.aspx?id=43717).
When deploying apps to servers with [Web Deploy](/iis/install/installing-publishing-technologies/installing-and-configuring-web-deploy-on-iis-80-or-later), install the latest version of Web Deploy on the server. To install Web Deploy, see [IIS Downloads: Web Deploy](https://www.iis.net/downloads/microsoft/web-deploy).

## Create the IIS site

Expand Down
4 changes: 2 additions & 2 deletions aspnetcore/host-and-deploy/iis/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ net start w3svc
## Install Web Deploy when publishing with Visual Studio

When deploying apps to servers with [Web Deploy](/iis/install/installing-publishing-technologies/installing-and-configuring-web-deploy-on-iis-80-or-later), install the latest version of Web Deploy on the server. To install Web Deploy, use the [Web Platform Installer (WebPI)](https://www.microsoft.com/web/downloads/platform.aspx) or obtain an installer directly from the [Microsoft Download Center](https://www.microsoft.com/download/details.aspx?id=43717). The preferred method is to use WebPI. WebPI offers a standalone setup and a configuration for hosting providers.
When deploying apps to servers with [Web Deploy](/iis/install/installing-publishing-technologies/installing-and-configuring-web-deploy-on-iis-80-or-later), install the latest version of Web Deploy on the server. To install Web Deploy, use the [Web Platform Installer (WebPI)](https://www.microsoft.com/web/downloads/platform.aspx) or see [IIS Downloads: Web Deploy](https://www.iis.net/downloads/microsoft/web-deploy). The preferred method is to use WebPI. WebPI offers a standalone setup and a configuration for hosting providers.

## Create the IIS site

Expand Down Expand Up @@ -931,7 +931,7 @@ ASP.NET Core adopts roll-forward behavior for patch releases of shared framework

## Install Web Deploy when publishing with Visual Studio

When deploying apps to servers with [Web Deploy](/iis/install/installing-publishing-technologies/installing-and-configuring-web-deploy-on-iis-80-or-later), install the latest version of Web Deploy on the server. To install Web Deploy, use the [Web Platform Installer (WebPI)](https://www.microsoft.com/web/downloads/platform.aspx) or obtain an installer directly from the [Microsoft Download Center](https://www.microsoft.com/download/details.aspx?id=43717). The preferred method is to use WebPI. WebPI offers a standalone setup and a configuration for hosting providers.
When deploying apps to servers with [Web Deploy](/iis/install/installing-publishing-technologies/installing-and-configuring-web-deploy-on-iis-80-or-later), install the latest version of Web Deploy on the server. To install Web Deploy, use the [Web Platform Installer (WebPI)](https://www.microsoft.com/web/downloads/platform.aspx) or [IIS Downloads: Web Deploy](https://www.iis.net/downloads/microsoft/web-deploy). The preferred method is to use WebPI. WebPI offers a standalone setup and a configuration for hosting providers.

## Create the IIS site

Expand Down
20 changes: 18 additions & 2 deletions aspnetcore/security/authentication/windowsauth.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,16 @@ The following code adds authentication and configures the app's web host to use
> [!NOTE]
> HTTP.sys delegates to [Kernel Mode](/windows-hardware/drivers/gettingstarted/user-mode-and-kernel-mode) authentication with the Kerberos authentication protocol. [User Mode](/windows-hardware/drivers/gettingstarted/user-mode-and-kernel-mode) authentication isn't supported with Kerberos and HTTP.sys. The machine account must be used to decrypt the Kerberos token/ticket that's obtained from Active Directory and forwarded by the client to the server to authenticate the user. Register the Service Principal Name (SPN) for the host, not the user of the app.
<!-- DOC AUTHOR NOTE
The following hub.docker.com link is a valid URL,
but the build system throws a broken link error
because the page returns with various 400-series
errors. Therefore, the link is code-fenced.
-->

> [!NOTE]
> HTTP.sys isn't supported on Nano Server version 1709 or later. To use Windows Authentication and HTTP.sys with Nano Server, use a [Server Core (microsoft/windowsservercore) container](https://hub.docker.com/_/microsoft-windows-servercore). For more information on Server Core, see [What is the Server Core installation option in Windows Server?](/windows-server/administration/server-core/what-is-server-core).
> HTTP.sys isn't supported on Nano Server version 1709 or later. To use Windows Authentication and HTTP.sys with Nano Server, use a Server Core (microsoft/windowsservercore) container (see `https://hub.docker.com/_/microsoft-windows-servercore`). For more information on Server Core, see [What is the Server Core installation option in Windows Server?](/windows-server/administration/server-core/what-is-server-core).
## Authorize users

Expand Down Expand Up @@ -471,8 +479,16 @@ Configure the app's web host to use HTTP.sys with Windows Authentication (`Progr
> [!NOTE]
> HTTP.sys delegates to [Kernel Mode](/windows-hardware/drivers/gettingstarted/user-mode-and-kernel-mode) authentication with the Kerberos authentication protocol. [User Mode](/windows-hardware/drivers/gettingstarted/user-mode-and-kernel-mode) authentication isn't supported with Kerberos and HTTP.sys. The machine account must be used to decrypt the Kerberos token/ticket that's obtained from Active Directory and forwarded by the client to the server to authenticate the user. Register the Service Principal Name (SPN) for the host, not the user of the app.
<!-- DOC AUTHOR NOTE
The following hub.docker.com link is a valid URL,
but the build system throws a broken link error
because the page returns with various 400-series
errors. Therefore, the link is code-fenced.
-->

> [!NOTE]
> HTTP.sys isn't supported on Nano Server version 1709 or later. To use Windows Authentication and HTTP.sys with Nano Server, use a [Server Core (microsoft/windowsservercore) container](https://hub.docker.com/_/microsoft-windows-servercore). For more information on Server Core, see [What is the Server Core installation option in Windows Server?](/windows-server/administration/server-core/what-is-server-core).
> HTTP.sys isn't supported on Nano Server version 1709 or later. To use Windows Authentication and HTTP.sys with Nano Server, use a Server Core (microsoft/windowsservercore) container (see `https://hub.docker.com/_/microsoft-windows-servercore`). For more information on Server Core, see [What is the Server Core installation option in Windows Server?](/windows-server/administration/server-core/what-is-server-core).
## Authorize users

Expand Down
2 changes: 1 addition & 1 deletion aspnetcore/signalr/scale.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ http {
}
```

With [Nginx Plus](https://www.nginx.com/products/nginx), use `sticky` to add a cookie to requests and pin the user's requests to a server:
With [Nginx Plus](https://www.f5.com/products/nginx/nginx-plus), use `sticky` to add a cookie to requests and pin the user's requests to a server:

```nginx
http {
Expand Down

0 comments on commit 90ad505

Please sign in to comment.