The Apache, Nginx and IIS Error Pages project is a drop-in replacement of beautifully designed, user-friendly Apache 2, Nginx and IIS error pages. If you're tired of having boring error pages displayed to users then these might just be the solution for you.
As of Version 2.0.0 there is now additional support for Nginx, Microsoft IIS and other webservers. Installation instructions are similar to Apache 2 and more details are contained below.
- Features
- Preview
- Installation
- Minification Setup
- Contributing
- Code of Conduct
- Versioning
- Change-Log
- Authors
- License
- Acknowledgements
- Complete off-line functionality. There is no dependence on an Internet connection for these pages to work. Everything is self-contained in the distribution (
/dist/
) folder. - A compressed distribution file size which totals only
78 KB
(from111 KB
) and includes Images, CSS, HTML and JavaScript. Total package size is2.1 MB
with all the Font Awesome and Web Fonts included. - Fully responsive templates, works across desktop, tablet and mobile.
- Animated text, creating the experience of a terminal console, outputting the respective error code and description of error on screen.
- Now full support for Nginx, Microsoft IIS and other webservers which are non-Apache related.
- There are 54 templates:
- 38 are exclusive for Apache.
- 6 for
Nginx
. - 7 general/other HTTP status codes templates.
- 3 for
Microsoft Internet Information Services
.
- Each template, as well as all CSS files, have been minified to ensure the smallest possible file size.
- Font Awesome icons used in error messages.
Installation instructions are found below the previews. This shouldn't take you more than 5 minutes to implement these hand-crafted, custom-designed error pages.
Installing the drop-in replacement for Apache 2 error pages comes in two parts. First, you need to copy all the files contained within the /dist/apache/
folder to a location on your server. Second, you need to edit your apache.conf
or httpd.conf
file to link the error pages to your server installation.
A typical Apache 2 installation will already have a set of Error pages contained as part of the installation. Your path to the error pages will vary but for this example we will assume that your Apache 2 default www
folder is installed under /usr/local/var/www/
. Within this location you will see Apache's default error pages contained at /usr/local/var/www/error/
.
Do not replace the default error pages with this project's files. Instead, install them in a different, but accessible location that the Apache user can access. These commands will copy the project's error pages to your www
folder.
$ mkdir -p /usr/local/var/www/error-pages
$ cd Webserver-Error-Pages/
$ cp -R dist/apache/ /usr/local/var/www/error-pages
$ chown -R www:apache /usr/local/var/www/error-pages # see note below.
Note: Ensure that you replace www
and apache
, in the chown
command above, with your web-server's default user and group.
Check to see if you have all the required files.
$ ls -lh /usr/local/var/www/error-pages
Make sure that you have the following file structure below.
/usr/local/var/www/error-pages
βββ 400.html
βββ 401.html
βββ 403.html
βββ 404.html
βββ 405.html
βββ 406.html
βββ 407.html
βββ 408.html
βββ 409.html
βββ 410.html
βββ 411.html
βββ 412.html
βββ 413.html
βββ 414.html
βββ 415.html
βββ 416.html
βββ 417.html
βββ 418.html
βββ 421.html
βββ 422.html
βββ 423.html
βββ 424.html
βββ 426.html
βββ 428.html
βββ 429.html
βββ 431.html
βββ 451.html
βββ 500.html
βββ 501.html
βββ 502.html
βββ 503.html
βββ 504.html
βββ 505.html
βββ 506.html
βββ 507.html
βββ 508.html
βββ 510.html
βββ 511.html
βββ assets
βΒ Β βββ imac.svg
βββ css
βΒ Β βββ breakpoints.css
βΒ Β βββ fontawesome-all.css
βΒ Β βββ google-fonts.css
βΒ Β βββ main.css
βββ webfonts
βββ -F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2
βββ -F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2
βββ -F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2
βββ -F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2
βββ -F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2
βββ fa-brands-400.eot
βββ fa-brands-400.svg
βββ fa-brands-400.ttf
βββ fa-brands-400.woff
βββ fa-brands-400.woff2
βββ fa-regular-400.eot
βββ fa-regular-400.svg
βββ fa-regular-400.ttf
βββ fa-regular-400.woff
βββ fa-regular-400.woff2
βββ fa-solid-900.eot
βββ fa-solid-900.svg
βββ fa-solid-900.ttf
βββ fa-solid-900.woff
βββ fa-solid-900.woff2
3 directories, 63 files
In addition to the above Apache error pages there is also support for additional webservers. You can find production-ready, minified template files for the following webservers:
- Nginx files located at
dist/nginx/
- Microsoft IIS files located at
dist/ms-iis/
- Other webserver files located at
dist/other/
You can copy the template files required from any of these additional webserver folders to your server installation.
Once you have your files in the right location you can now edit either your apache.conf
or httpd.conf
file, depending on your particular installation.
You can find the location to your file with the following.
$ locate httpd.conf
/usr/local/etc/httpd/httpd.conf
If your system returns nothing, run:
$ locate apache.conf
/usr/local/etc/apache/apache.conf
Open the file with your favourite editor.
$ sudo nano /usr/local/etc/httpd/httpd.conf
Scroll down until you find the following section in your conf file.
<IfModule alias_module>
#
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
...
...
</IfModule>
Add the following to this section.
<IfModule alias_module>
#
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
#
# Error Pages Alias
#
Alias /ErrorPages/ /usr/local/var/www/error-pages/
Alias /ErrorPages/css/ /usr/local/var/www/error-pages/css/
Alias /ErrorPages/assets/ /usr/local/var/www/error-pages/assets/
</IfModule>
Now, scroll down further until you get to this section.
#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#
Comment out any ErrorDocument
directives (i.e. it should look like #ErrorDocument
) and then add your new directives so that your file looks similar to this:
#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#
ErrorDocument 400 /ErrorPages/400.html
ErrorDocument 401 /ErrorPages/401.html
ErrorDocument 403 /ErrorPages/403.html
ErrorDocument 404 /ErrorPages/404.html
ErrorDocument 405 /ErrorPages/405.html
ErrorDocument 406 /ErrorPages/406.html
ErrorDocument 407 /ErrorPages/407.html
ErrorDocument 408 /ErrorPages/408.html
ErrorDocument 409 /ErrorPages/409.html
ErrorDocument 410 /ErrorPages/410.html
ErrorDocument 411 /ErrorPages/411.html
ErrorDocument 412 /ErrorPages/412.html
ErrorDocument 413 /ErrorPages/413.html
ErrorDocument 414 /ErrorPages/414.html
ErrorDocument 415 /ErrorPages/415.html
ErrorDocument 416 /ErrorPages/416.html
ErrorDocument 417 /ErrorPages/417.html
# ErrorDocument 418 /ErrorPages/418.html (this isn't working and not sure why)
ErrorDocument 421 /ErrorPages/421.html
ErrorDocument 422 /ErrorPages/422.html
ErrorDocument 423 /ErrorPages/423.html
ErrorDocument 424 /ErrorPages/424.html
ErrorDocument 426 /ErrorPages/426.html
ErrorDocument 428 /ErrorPages/428.html
ErrorDocument 429 /ErrorPages/429.html
ErrorDocument 431 /ErrorPages/431.html
ErrorDocument 451 /ErrorPages/451.html
ErrorDocument 500 /ErrorPages/500.html
ErrorDocument 501 /ErrorPages/501.html
ErrorDocument 502 /ErrorPages/502.html
ErrorDocument 503 /ErrorPages/503.html
ErrorDocument 504 /ErrorPages/504.html
ErrorDocument 505 /ErrorPages/505.html
ErrorDocument 506 /ErrorPages/506.html
ErrorDocument 507 /ErrorPages/507.html
ErrorDocument 508 /ErrorPages/508.html
ErrorDocument 510 /ErrorPages/510.html
ErrorDocument 511 /ErrorPages/511.html
Save your file and then test your configuration changes by executing the following.
$ sudo apachectl configtest
If you get any message other than Syntax OK
then you've done something wrong. You will need to check your changes made to the .conf
file and see where you may have gone wrong.
The final step is to restart Apache so that it loads your new error pages.
$ sudo apachectl restart
As part of the project I have included both the /src/
and /dist/
folders. The difference between the two is that the /dist/
folder contains minified versions of the /src/
folder files.
There is a bash
script, found at /src/scripts/minify which runs the html
files through html-minifier
and the css
files through postcss
.
You will need to install, html-minifier
, postcss
(with plugins), and uglify-js
before you can execute the minifaction script. You can do this by following the commands below.
The best way to install html-minifier
is by running the following commands in the project root folder. (it is important to note that Node (which provides npm
) needs to be installed for this to work).
$ cd Webserver-Error-Pages/
$ git clone git://github.com/kangax/html-minifier.git
$ cd html-minifier
$ npm link .
As of version v1.1.0
there is now a package.json
file contained at the root of this project folder. This file contains all the dependencies required to execute the ./src/scripts/minify
script. You can run the following commands and it will install postcss
, along with various plugins, as well as uglify-js
which is used by html-minifier
.
$ npm install
You will now have a new /node_modules/
folder and you should be good to go to execute ./src/scripts/minify
. You can ignore Installing postcss
and Installing uglify-js
, in the steps below, as you will have these installed already.
You can run the script with this command:
$ cd src/
$ ./scripts/minify
The ../dist/apache folder has been reset.
400.html minified
401.html minified
403.html minified
404.html minified
405.html minified
406.html minified
407.html minified
408.html minified
409.html minified
410.html minified
411.html minified
412.html minified
413.html minified
414.html minified
415.html minified
416.html minified
417.html minified
418.html minified
421.html minified
422.html minified
423.html minified
424.html minified
426.html minified
428.html minified
429.html minified
431.html minified
451.html minified
500.html minified
501.html minified
502.html minified
503.html minified
504.html minified
505.html minified
506.html minified
507.html minified
508.html minified
510.html minified
511.html minified
All the CSS files have now been minified.
Copying the assets and fonts...
Minification Complete!
There are no options for running this script. Executing this command will:
- Delete the contents in the
/dist/apache/
folder. - Recreate the
/dist/apache/css/
folder. - Minify the HTML for all files in the
/src/apache/
directory. - Minify the CSS for all the files in
/src/css/
directory. - Copy unminified assets and fonts in
/src/static/
directory. - Output the HTML and CSS to the
/dist/apache/
folder.
There are additional templates which are used only by nginx
. These templates are included in the dist/nginx/
folder and the script below will minify the files for this folder.
$ cd src/
$ ./scripts/minify_nginx
The ../dist/nginx folder has been reset.
444.html minified
494.html minified
495.html minified
496.html minified
497.html minified
499.html minified
All the CSS files have now been minified.
Copying the assets and fonts...
Minification Complete!
There are additional templates which are used only by Microsoft Internet Information Services. These templates are included in the dist/ms-iis/
folder and the script below will minify the files for this folder.
$ cd src/
$ ./scripts/minify_iis
The ../dist/ms-iis folder has been reset.
440.html minified
449.html minified
451.html minified
All the CSS files have now been minified.
Copying the assets and fonts...
Minification Complete!
There are additional templates which are used only by other webservers. These templates are included in the dist/other/
folder and the script below will minify the files for this folder.
$ cd src/
$ ./scripts/minify_other
The ../dist/other folder has been reset.
420.html minified
520.html minified
521.html minified
533.html minified
900.html minified
901.html minified
902.html minified
All the CSS files have now been minified.
Copying the assets and fonts...
Minification Complete!
Please read the CONTRIBUTING.md file for details on how you can get involved in the project as well as the process for submitting bugs and pull requests.
Please read the CODE_OF_CONDUCT.md file for the guidelines that govern the community.
We use Semantic Versioning for software versions of this project. For a list of all the versions available, see the tags and releases on this repository.
View the CHANGELOG.md file for a detailed list of changes, along with specific tasks completed for each version released to date.
- Justin Hartman - @justinhartman
Also see the list of contributors who have participated in this project.
This work is licensed under the GNU Affero General Public License. You can view the full LICENSE by reading this file.
Copyright 2018-2020 Justin Hartman <[email protected]> (https://hartman.me)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Thanks go out to the following for the inspiration, images, icons and, in some cases, the code to back this project up.
- Computer SVG by Kameleon - License CC BY 3.0.
- Icons by Font Awesome - Read License here.
- html-minifier - for compressing the
/src/*.html
files into the/dist/*.html
folder. License: MIT. - PostCSS - for compressing the
/src/css/
css files into the/dist/css/
folder. License: MIT. - @maicong/ErrorPages - for the terminal/console output code. License: MIT.
- @trimstray/http-error-pages - for giving me the inspiration to use icons as part of the design. License: GPLv3.
- @jongha/httperrorpages - for the error pages status message descriptions. License: MIT.
- @justinhartman/.github - for the awesome Github project templates.