The point of this article is to show you how to do some commonly-desired tweaks in Nginx while in the meantime helping you understand how it works. Do not require .html in URLs If your website is using lots of .html files for pages, it's sort of overkill to make people type that in for every page they are looking for. We can remove that requirement with Nginx. Open your site's configuration file in /etc/nginx/sites-enabled/ and within the server block, there should be a location block that lo...