From a61cb1de9952f9a8521ed7f382b38de59fd653b9 Mon Sep 17 00:00:00 2001 From: Matt Peel Date: Tue, 9 Apr 2019 16:24:09 +1200 Subject: [PATCH] Fix reference to webconfig.php, an invalid file The upgrading docs reference webconfig.php, which is incorrect and has never existed. I presume the docs mean to reference web.config, which is the IIS configuration file. I've also fixed a couple of minor spelling mistakes and mentioned Apache for htaccess and IIS for web.config so people know what they're for. [ci skip] --- docs/en/03_Upgrading/01_Upgrading_project.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/03_Upgrading/01_Upgrading_project.md b/docs/en/03_Upgrading/01_Upgrading_project.md index 0114c3515..b8103c316 100644 --- a/docs/en/03_Upgrading/01_Upgrading_project.md +++ b/docs/en/03_Upgrading/01_Upgrading_project.md @@ -1094,11 +1094,11 @@ If you are using a modified `index.php`, `.htaccess`, or `web.config`, you will * Create a `public` folder in the root of your project * Move the following files and folder to your new public folder * `index.php` - * `.htaccess` - * `webconfig.php` + * `.htaccess` (if you're using Apache) + * `web.config` (if you're using IIS) * `assets` * Any `favicon` files - * Other common files that should be accssible in your project webroot (example: `robots.txt`) + * Other common files that should be accessible in your project webroot (e.g. `robots.txt`, or the `.well-known` directory) * Delete the root `resources` or `_resources` directories if present. * Run the following command `composer vendor-expose` to make static assets files accessible via the `public` directory.