From 399eb348ed2b09c34ba06f7c94a3d142f5276237 Mon Sep 17 00:00:00 2001 From: Chris R Date: Fri, 24 Jun 2016 10:45:41 -0700 Subject: [PATCH] Update the webroot description (#1500) * Update the webroot description * Add a comma --- aspnet/conceptual-overview/aspnet.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnet/conceptual-overview/aspnet.rst b/aspnet/conceptual-overview/aspnet.rst index 71d212d8c5..8575e8aa69 100644 --- a/aspnet/conceptual-overview/aspnet.rst +++ b/aspnet/conceptual-overview/aspnet.rst @@ -110,7 +110,7 @@ The content root is the base path to any content used by the app, such as its vi Web root -------- -The web root of your app is the root location in your project from which HTTP requests are handled (for example handling of static file requests). When using the static files middleware only files from the web root folder are accessible; the other files in the content root **cannot** be accessed remotely. The default web root path is `/wwwroot`, but you can specify a different location using the `WebHostBuilder`. +The web root of your app is the directory in your project for public, static resources like css, js, and image files. The static files middleware will only serve files from the web root directory (and sub-directories) by default. The web root path defaults to `/wwwroot`, but you can specify a different location using the `WebHostBuilder`. Configuration ------------- @@ -146,4 +146,4 @@ Next steps - :doc:`/tutorials/first-mvc-app/index` - :doc:`/tutorials/your-first-mac-aspnet` - :doc:`/tutorials/first-web-api` -- :doc:`/fundamentals/index` \ No newline at end of file +- :doc:`/fundamentals/index`