From a6c7d32199a90d03715e1f59dcb3258bce4c388e Mon Sep 17 00:00:00 2001 From: Andy Stevens Date: Fri, 22 Mar 2019 08:55:32 -0400 Subject: [PATCH] [Update] How to Install a LEMP Server on Ubuntu 18.04 A Disqus comment suggested we bold the mention of substituting index.html for index.php for WordPress installs to make it more apparent. --- .../lemp/how-to-install-a-lemp-server-on-ubuntu-18-04/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-18-04/index.md b/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-18-04/index.md index e68fe0ea8d1..ea5403c78e2 100644 --- a/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-18-04/index.md +++ b/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-18-04/index.md @@ -133,7 +133,7 @@ server { - NGINX is listening on port `80` for incoming connections to `example.com` or `www.example.com`. - - The site is served out of `/var/www/html/example.com/public_html` and its index page (`index.html`) is a simple `.html` file. If your index page will use PHP like WordPress does, substitute `index.html` for `index.php`. + - The site is served out of `/var/www/html/example.com/public_html` and its index page (`index.html`) is a simple `.html` file. **If your index page will use PHP like WordPress does, substitute `index.html` for `index.php`.** - `try_files` tells NGINX to verify that a requested file or directory [actually exists](https://nginx.org/en/docs/http/ngx_http_core_module.html#try_files) in the site's root filesystem before further processing the request. If it does not, a `404` is returned.