fix typo in nginx root definition
This commit is contained in:
parent
95438e4092
commit
2228163edd
16
README.md
16
README.md
@ -5,12 +5,12 @@ Here are some fun error pages to use instead of the usual boring ones. I didn't
|
|||||||
Feel free to use these pages on your site and/or alter them however you see fit. Enjoy.
|
Feel free to use these pages on your site and/or alter them however you see fit. Enjoy.
|
||||||
|
|
||||||
## Contents <!-- omit in toc -->
|
## Contents <!-- omit in toc -->
|
||||||
- [Some screenshots](#Some-screenshots)
|
- [Some screenshots](#some-screenshots)
|
||||||
- [Getting the files](#Getting-the-files)
|
- [Getting the files](#getting-the-files)
|
||||||
- [Using the error pages (NGINX)](#Using-the-error-pages-NGINX)
|
- [Using the error pages (NGINX)](#using-the-error-pages-nginx)
|
||||||
- [Multiple sites](#Multiple-sites)
|
- [Multiple sites](#multiple-sites)
|
||||||
- [The pesky 'internal' directive](#The-pesky-internal-directive)
|
- [The pesky 'internal' directive](#the-pesky-internal-directive)
|
||||||
- [Final words](#Final-words)
|
- [Final words](#final-words)
|
||||||
|
|
||||||
## Some screenshots
|
## Some screenshots
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ error_page 403 /errorpages/403.html;
|
|||||||
error_page 404 /errorpages/404.html;
|
error_page 404 /errorpages/404.html;
|
||||||
error_page 500 502 503 504 /errorpages/50x.html;
|
error_page 500 502 503 504 /errorpages/50x.html;
|
||||||
|
|
||||||
location ~ ^/errorpages {
|
location ^~ /errorpages {
|
||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@ -78,7 +78,7 @@ Now NGINX will automatically insert the contents of that *'errorpages.conf* file
|
|||||||
Following the advice you see almost everywhere, you would expect our error blocks to be set up like this:
|
Following the advice you see almost everywhere, you would expect our error blocks to be set up like this:
|
||||||
|
|
||||||
```nginx
|
```nginx
|
||||||
location ~ ^/errorpages {
|
location ^~ /errorpages {
|
||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
internal; # notice this directive!
|
internal; # notice this directive!
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user