├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── CUSTOM.md │ └── Feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TODO.md ├── apache-error-pages.code-workspace ├── apache-error-pages.sublime-project ├── dist ├── .gitignore ├── apache │ ├── 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 ├── ms-iis │ ├── 440.html │ ├── 449.html │ ├── 451.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 ├── nginx │ ├── 444.html │ ├── 494.html │ ├── 495.html │ ├── 496.html │ ├── 497.html │ ├── 499.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 └── other │ ├── 420.html │ ├── 520.html │ ├── 521.html │ ├── 533.html │ ├── 900.html │ ├── 901.html │ ├── 902.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 ├── licenses └── LICENSE.txt ├── package-lock.json ├── package.json ├── postcss.config.js └── src ├── .gitignore ├── apache ├── 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 ├── css ├── breakpoints.css ├── fontawesome-all.css ├── google-fonts.css └── main.css ├── docs ├── 404-preview.mp4 ├── desktop.png ├── mobile.png ├── preview.gif └── tablet.png ├── ms-iis ├── 440.html ├── 449.html └── 451.html ├── nginx ├── 444.html ├── 494.html ├── 495.html ├── 496.html ├── 497.html └── 499.html ├── other ├── 420.html ├── 520.html ├── 521.html ├── 533.html ├── 900.html ├── 901.html └── 902.html ├── scripts ├── minify ├── minify_iis ├── minify_nginx └── minify_other └── static ├── assets └── imac.svg └── 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 /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [justinhartman] 2 | custom: ['https://www.paypal.me/22digital'] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Create a report to help us fix a bug you have found. 4 | --- 5 | 6 | ### Describe the Bug 7 | 8 | _A clear and concise description of what the bug is._ 9 | 10 | ### To Reproduce 11 | 12 | _Steps to reproduce the behaviour:_ 13 | 14 | 1. Go to '...' 15 | 1. Click on '...' 16 | 1. Scroll down to '...' 17 | 1. See error 18 | 19 | ### Expected behaviour 20 | 21 | _A clear and concise description of what you expected to happen._ 22 | 23 | ### Screenshots 24 | 25 | _If applicable, add screenshots to help explain your problem._ 26 | 27 | ![Example Screenshot][screenshot-1] 28 | 29 | ### Specifications 30 | 31 | **Desktop (please complete the following information):** 32 | 33 | - Hardware: [e.g. MacBook Pro (13-inch, Mid 2012)] 34 | - OS: [e.g. macOS 10.13.4] 35 | - Browser: [e.g. Chrome, Safari, IE] 36 | - Version: [e.g. 61, 11.1, 9] 37 | 38 | **Smartphone (please complete the following information):** 39 | 40 | - Device: [e.g. iPhoneX] 41 | - OS: [e.g. iOS11.1] 42 | - Browser: [e.g. stock browser, safari] 43 | - Version: [e.g. 22] 44 | 45 | ### Additional Context 46 | 47 | _Add any other context about the problem here._ 48 | 49 | [//]: # (Add links to any screenshots or other relevant information below) 50 | 51 | [screenshot-1]: https://ws3.sinaimg.cn/large/006tKfTcly1fr6kihddwhj30b008j74g.jpg 52 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/CUSTOM.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: General Report 3 | about: A general issue report to help improve our project. 4 | --- 5 | 6 | ### Expected Behaviour 7 | 8 | _What did you expect to happen when you encountered this issue?_ 9 | 10 | ### Actual Behaviour 11 | 12 | _What actually happened instead?_ 13 | 14 | ### Steps to Reproduce the Problem 15 | 16 | _Detail the steps below to help us reproduce the problem you encountered._ 17 | 18 | 1. Go to '...' 19 | 1. Click on '...' 20 | 1. Scroll down to '...' 21 | 1. See error 22 | 23 | ### Specifications 24 | 25 | _The version of the project you are using, operating system, hardware and anything else that you think may be relevant to reporting this problem._ 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature Request 3 | about: Suggest an idea or feature for this project. 4 | --- 5 | 6 | ### Is your feature request related to a problem? Please describe. 7 | 8 | _A clear and concise description of what the problem is. e.g. I'm always frustrated when [...]_ 9 | 10 | ### Describe the solution you'd like 11 | 12 | _A clear and concise description of what you want to happen._ 13 | 14 | ### Describe alternatives you've considered 15 | 16 | _A clear and concise description of any alternative solutions or features you've considered._ 17 | 18 | ### Additional Context 19 | 20 | _Add any other context or screenshots about the feature request here._ 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Checklist 2 | 3 | _Confirm you have completed the following actions prior to submitting this PR._ 4 | 5 | - [ ] There is an existing issue report for this PR. 6 | - [ ] I have forked this project. 7 | - [ ] I have created a feature branch. 8 | - [ ] My changes have been committed. 9 | - [ ] I have pushed my changes to the branch. 10 | 11 | ## Title 12 | 13 | _Give your PR a short title summarising the patch, bug fix or feature._ 14 | 15 | ## Description 16 | 17 | _Ensure the PR description clearly describes the problem and solution and provide as much relevant information as possible._ 18 | 19 | ## Issue Resolution 20 | 21 | _Tell us which issue this PR fixes._ 22 | 23 | This Pull Request Fixes # 24 | 25 | ## Proposed Changes 26 | 27 | _List your proposed changes below._ 28 | 29 | - 30 | - 31 | - 32 | 33 | ## New or Changed Features 34 | 35 | _Does this PR provide new or changed features or enhancements? If so, what is included in this PR?_ 36 | 37 | - 38 | - 39 | - 40 | 41 | @justinhartman 42 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Sublime 2 | *.sublime-workspace 3 | 4 | # Docs folder 5 | docs/ 6 | 7 | # Node packages. Not sure if this even helps. 8 | #package.json 9 | #package-lock.json 10 | 11 | # Hide the Node modules. 12 | node_modules/ 13 | 14 | # Third-party software 15 | html-minifier/ 16 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute to This Project 2 | 3 | ## Did You Find a Bug? 4 | 5 | - **Ensure the bug was not already reported** by searching on GitHub under [Issues][issues]. 6 | - If you're unable to find an open issue addressing the problem, [open a new one][new-issue]. Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behaviour that is not occurring. 7 | 8 | ## Did You Write a Patch That Fixes a Bug? 9 | 10 | - Open a new GitHub pull request with the patch. 11 | - Fork this project 12 | - Create your feature branch: `git checkout -b my-new-feature` 13 | - Commit your changes: `git commit -am 'Add some feature'` 14 | - Push to the branch: `git push origin my-new-feature` 15 | - Submit a pull request :tada: 16 | - Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable. 17 | 18 | ## Do You Intend to Add a New Feature or Change an Existing One? 19 | 20 | - Suggest your change as a [new issue][new-issue] using the label `enhancement`, **BEFORE** you start writing code. 21 | 22 | Thanks for contributing! :heart: 23 | 24 | [//]: # (Simply change the URL's below to your own project information) 25 | 26 | [issues]: https://github.com/justinhartman/Webserver-Error-Pages/issues 27 | [new-issue]: https://github.com/justinhartman/Webserver-Error-Pages/issues/new 28 | -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | # TODO items 2 | 3 | ## Main Template 4 | 5 | - Create breakpoints in CSS for: 6 | + [x] Desktop 7 | + [x] Tablet 8 | + [x] Mobile 9 | - [x] Look for a minifying option for HTML 10 | - [x] Create compression script for `/src/` folder. 11 | - [x] Create `/dist/` folder for converted HTML files to live. 12 | 13 | ## Templates to Create 14 | 15 | - [x] 400.html 16 | - [x] 401.html 17 | - ~~[ ] 402.html~~ 18 | - [x] 403.html 19 | - [x] 404.html 20 | - [x] 405.html 21 | - [x] 406.html 22 | - [x] 407.html 23 | - [x] 408.html 24 | - ~~[ ] 409.html~~ 25 | - ~~[ ] 410.html~~ 26 | - [x] 411.html 27 | - ~~[ ] 412.html~~ 28 | - [x] 413.html 29 | - [x] 414.html 30 | - [x] 415.html 31 | - ~~[ ] 416.html~~ 32 | - ~~[ ] 417.html~~ 33 | - [x] 420.html 34 | - [x] 429.html 35 | - [x] 431.html 36 | - [x] 500.html 37 | - [x] 501.html 38 | - [x] 502.html 39 | - [x] 503.html 40 | - [x] 504.html 41 | - [x] 505.html 42 | - [x] 900.html 43 | - [x] 901.html 44 | - [x] 902.html 45 | 46 | ## Documentation 47 | 48 | - [ ] Create README for `/docs/` folder. 49 | - [ ] Move completed `dist` templates to `/docs/` folder. 50 | - [ ] Configure Github Pages for `/docs/` template. 51 | - [ ] Create blog post on 52 | -------------------------------------------------------------------------------- /apache-error-pages.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": "." 5 | } 6 | ], 7 | "settings": {} 8 | } -------------------------------------------------------------------------------- /apache-error-pages.sublime-project: -------------------------------------------------------------------------------- 1 | { 2 | "folders": 3 | [ 4 | { 5 | "path": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- 1 | # Prevent Git from checking in these files in this folder. 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dist/apache/400.html: -------------------------------------------------------------------------------- 1 | 400 - Bad Request
:~$ Error 400!
Bad Request

The server cannot or will not process the request due to an apparent client error.
2 | -------------------------------------------------------------------------------- /dist/apache/401.html: -------------------------------------------------------------------------------- 1 | 401 - Unauthorized
:~$ Error 401!
Unauthorized

The response must include a WWW-Authenticate header field containing a challenge applicable to the requested resource.
-------------------------------------------------------------------------------- /dist/apache/403.html: -------------------------------------------------------------------------------- 1 | 403 - Forbidden
:~$ Error 403!
Forbidden

The request was valid, but the server is refusing action.
The user might not have the necessary permissions for a resource, or may need an account of some sort.
-------------------------------------------------------------------------------- /dist/apache/404.html: -------------------------------------------------------------------------------- 1 | 404 - Resource not found
:~$ Error 404!
Resource not found

The requested resource could not be found but may be available again in the future.
-------------------------------------------------------------------------------- /dist/apache/405.html: -------------------------------------------------------------------------------- 1 | 405 - Method Not Allowed
:~$ Error 405!
Method Not Allowed

A request method is not supported for the requested resource; for example, a GET request on a form that requires data to be presented via POST, or a PUT request on a read-only resource.
-------------------------------------------------------------------------------- /dist/apache/406.html: -------------------------------------------------------------------------------- 1 | 406 - Not Acceptable
:~$ Error 406!
Not Acceptable

The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.
-------------------------------------------------------------------------------- /dist/apache/407.html: -------------------------------------------------------------------------------- 1 | 407 - Proxy Authentication Required
:~$ Error 407!
Proxy Authentication Required

The client must first authenticate itself with the proxy.
-------------------------------------------------------------------------------- /dist/apache/408.html: -------------------------------------------------------------------------------- 1 | 408 - Request Timeout
:~$ Error 408!
Request Timeout

The server timed out waiting for the request.
-------------------------------------------------------------------------------- /dist/apache/409.html: -------------------------------------------------------------------------------- 1 | 409 - Conflict
:~$ Error 409!
Conflict

Indicates that the request could not be processed because of conflict in the request, such as an edit conflict between multiple simultaneous updates.
-------------------------------------------------------------------------------- /dist/apache/410.html: -------------------------------------------------------------------------------- 1 | 410 - Gone
:~$ Error 410!
Gone

Indicates that the resource requested is no longer available and will not be available again. You should not request the resource in the future.
-------------------------------------------------------------------------------- /dist/apache/411.html: -------------------------------------------------------------------------------- 1 | 411 - Length Required
:~$ Error 411!
Length Required

The request did not specify the length of its content, which is required by the requested resource.
-------------------------------------------------------------------------------- /dist/apache/412.html: -------------------------------------------------------------------------------- 1 | 412 - Precondition Failed
:~$ Error 412!
Precondition Failed

The server does not meet one of the preconditions that the requester put on the request.
-------------------------------------------------------------------------------- /dist/apache/413.html: -------------------------------------------------------------------------------- 1 | 413 - Payload Too Large
:~$ Error 413!
Payload Too Large

The request is larger than the server is willing or able to process. Previously called 'Request Entity Too Large'.
-------------------------------------------------------------------------------- /dist/apache/414.html: -------------------------------------------------------------------------------- 1 | 414 - URI Too Long
:~$ Error 414!
URI Too Long

The URI provided was too long for the server to process.
-------------------------------------------------------------------------------- /dist/apache/415.html: -------------------------------------------------------------------------------- 1 | 415 - Unsupported Media Type
:~$ Error 415!
Unsupported Media Type

The request entity has a media type which the server or resource does not support.
-------------------------------------------------------------------------------- /dist/apache/416.html: -------------------------------------------------------------------------------- 1 | 416 - Range Not Satisfiable
:~$ Error 416!
Range Not Satisfiable

The client has asked for a portion of the file (byte serving), but the server cannot supply that portion.
-------------------------------------------------------------------------------- /dist/apache/417.html: -------------------------------------------------------------------------------- 1 | 417 - Expectation Failed
:~$ Error 417!
Expectation Failed

The server cannot meet the requirements of the Expect request-header field.
-------------------------------------------------------------------------------- /dist/apache/418.html: -------------------------------------------------------------------------------- 1 | 418 - I'm a teapot
:~$ Error 418!
I'm a teapot

This code was defined in 1998 as one of the traditional IETF April Fools' jokes, in RFC 2324, Hyper Text Coffee Pot Control Protocol, and is not expected to be implemented by actual HTTP servers. The RFC specifies this code should be returned by teapots requested to brew coffee. This HTTP status is used as an Easter egg in some websites, including Google.com.
-------------------------------------------------------------------------------- /dist/apache/421.html: -------------------------------------------------------------------------------- 1 | 421 - Misdirected Request
:~$ Error 421!
Misdirected Request

The request was directed at a server that is not able to produce a response; for example, because of connection reuse.
-------------------------------------------------------------------------------- /dist/apache/422.html: -------------------------------------------------------------------------------- 1 | 422 - Unprocessable Entity
:~$ Error 422!
Unprocessable Entity

The request was well-formed but was unable to be followed due to semantic errors.
-------------------------------------------------------------------------------- /dist/apache/423.html: -------------------------------------------------------------------------------- 1 | 423 - Locked
:~$ Error 423!
Locked

The resource that is being accessed is locked.
-------------------------------------------------------------------------------- /dist/apache/424.html: -------------------------------------------------------------------------------- 1 | 424 - Failed Dependency
:~$ Error 424!
Failed Dependency

The request failed because it depended on another request and that request failed (e.g., a PROPPATCH, whatever that means...).
-------------------------------------------------------------------------------- /dist/apache/426.html: -------------------------------------------------------------------------------- 1 | 426 - Upgrade Required
:~$ Error 426!
Upgrade Required

The client should switch to a different protocol such as TLS/1.0, given in the Upgrade header field.
-------------------------------------------------------------------------------- /dist/apache/428.html: -------------------------------------------------------------------------------- 1 | 428 - Precondition Required
:~$ Error 428!
Precondition Required

The origin server requires the request to be conditional. Intended to prevent the 'lost update' problem, where a client GETs a resource's state, modifies it, and PUTs it back to the server, when meanwhile a third party has modified the state on the server, leading to a conflict."
-------------------------------------------------------------------------------- /dist/apache/429.html: -------------------------------------------------------------------------------- 1 | 429 - Too Many Requests
:~$ Error 429!
Too Many Requests

The user has sent too many requests in a given amount of time. Intended for use with rate-limiting schemes.
-------------------------------------------------------------------------------- /dist/apache/431.html: -------------------------------------------------------------------------------- 1 | 431 - Request Header Fields Too Large
:~$ Error 431!
Request Header Fields Too Large

The server is unwilling to process the request because either an individual header field, or all the header fields collectively, are too large.
-------------------------------------------------------------------------------- /dist/apache/451.html: -------------------------------------------------------------------------------- 1 | 451 - Unavailable For Legal Reasons
:~$ Error 451!
Unavailable For Legal Reasons

A server operator has received a legal demand to deny access to a resource or to a set of resources that includes the requested resource.
-------------------------------------------------------------------------------- /dist/apache/500.html: -------------------------------------------------------------------------------- 1 | 500 - Internal Server Error
:~$ Error 500!
Internal Server Error

A generic error message, given when an unexpected condition was encountered and no more specific message is suitable.
-------------------------------------------------------------------------------- /dist/apache/501.html: -------------------------------------------------------------------------------- 1 | 501 - Not Implemented
:~$ Error 501!
Not Implemented

The server either does not recognize the request method, or it lacks the ability to fulfil the request.
-------------------------------------------------------------------------------- /dist/apache/502.html: -------------------------------------------------------------------------------- 1 | 502 - Bad Gateway
:~$ Error 502!
Bad Gateway

The server was acting as a gateway or proxy and received an invalid response from the upstream server.
-------------------------------------------------------------------------------- /dist/apache/503.html: -------------------------------------------------------------------------------- 1 | 503 - Service Unavailable
:~$ Error 503!
Service Unavailable

The server is currently unavailable (because it is overloaded or down for maintenance).
-------------------------------------------------------------------------------- /dist/apache/504.html: -------------------------------------------------------------------------------- 1 | 504 - Gateway Timeout
:~$ Error 504!
Gateway Timeout

The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.
-------------------------------------------------------------------------------- /dist/apache/505.html: -------------------------------------------------------------------------------- 1 | 505 - HTTP Version Not Supported
:~$ Error 505!
HTTP Version Not Supported

The server does not support the HTTP protocol version used in the request.
-------------------------------------------------------------------------------- /dist/apache/506.html: -------------------------------------------------------------------------------- 1 | 506 - Variant Also Negotiates
:~$ Error 506!
Variant Also Negotiates

Transparent content negotiation for the request results in a circular reference.
-------------------------------------------------------------------------------- /dist/apache/507.html: -------------------------------------------------------------------------------- 1 | 507 - Insufficient Storage
:~$ Error 507!
Insufficient Storage

The server is unable to store the representation needed to complete the request.
-------------------------------------------------------------------------------- /dist/apache/508.html: -------------------------------------------------------------------------------- 1 | 508 - Loop Detected
:~$ Error 508!
Loop Detected

The server detected an infinite loop while processing the request (sent in lieu of 208 Already Reported).
-------------------------------------------------------------------------------- /dist/apache/510.html: -------------------------------------------------------------------------------- 1 | 510 - Not Extended
:~$ Error 510!
Not Extended

Further extensions to the request are required for the server to fulfil it.
-------------------------------------------------------------------------------- /dist/apache/511.html: -------------------------------------------------------------------------------- 1 | 511 - Network Authentication Required
:~$ Error 511!
Network Authentication Required

The client needs to authenticate to gain network access. Intended for use by intercepting proxies used to control access to the network (e.g., "captive portals" used to require agreement to Terms of Service before granting full Internet access via a Wi-Fi hotspot).
-------------------------------------------------------------------------------- /dist/apache/css/breakpoints.css: -------------------------------------------------------------------------------- 1 | @media only all and (min-width:48rem) and (max-width:59.938rem){body{width:135%}#echoerror{width:530px;top:9%;left:17%}}@media only all and (min-width:38rem) and (max-width:47.938rem){body{width:135%}#echoerror{width:425px;top:12%;left:17%}}@media only all and (max-width:37.938rem){body{background-position:left 30px;width:700px}#echoerror{width:330px;top:9%;left:5%}} -------------------------------------------------------------------------------- /dist/apache/css/google-fonts.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1ea0-1ef9,U+20ab}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd} -------------------------------------------------------------------------------- /dist/apache/css/main.css: -------------------------------------------------------------------------------- 1 | @import url("google-fonts.css");::-moz-selection{background:#fff;text-shadow:none}::selection{background:#fff;text-shadow:none}body{font-family:IBM Plex Mono,monospace;background:#000 url(../assets/imac.svg);background-repeat:no-repeat;background-position:center 30px;background-size:contain;color:silver;font-size:12pt}#errormsg{display:none}#echoerror{width:50%;text-align:left;position:absolute;top:9%;left:26%}#container{text-align:center;vertical-align:middle;margin-top:50%;margin-bottom:20%}#blink{animation:blinker 1s linear infinite;display:inline;color:#0f0}@keyframes blinker{50%{opacity:0}}.green{color:#5cb85c}.orange{color:#f0ad4e}.red{color:#d9534f}.cursor{color:#0f0} -------------------------------------------------------------------------------- /dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2 -------------------------------------------------------------------------------- /dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /dist/apache/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/apache/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dist/ms-iis/440.html: -------------------------------------------------------------------------------- 1 | 440 - Login Time-out
:~$ Error 440!
Login Time-out

The client's session has expired and must log in again.
-------------------------------------------------------------------------------- /dist/ms-iis/449.html: -------------------------------------------------------------------------------- 1 | 449 - Retry With
:~$ Error 449!
Retry With

The server cannot honour the request because the user has not provided the required information.
-------------------------------------------------------------------------------- /dist/ms-iis/451.html: -------------------------------------------------------------------------------- 1 | 451 - Redirect
:~$ Error 451!
Redirect

Used in Exchange ActiveSync when either a more efficient server is available or the server cannot access the users' mailbox. The client is expected to re-run the HTTP AutoDiscover operation to find a more appropriate server.
-------------------------------------------------------------------------------- /dist/ms-iis/css/breakpoints.css: -------------------------------------------------------------------------------- 1 | @media only all and (min-width:48rem) and (max-width:59.938rem){body{width:135%}#echoerror{width:530px;top:9%;left:17%}}@media only all and (min-width:38rem) and (max-width:47.938rem){body{width:135%}#echoerror{width:425px;top:12%;left:17%}}@media only all and (max-width:37.938rem){body{background-position:left 30px;width:700px}#echoerror{width:330px;top:9%;left:5%}} -------------------------------------------------------------------------------- /dist/ms-iis/css/google-fonts.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1ea0-1ef9,U+20ab}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd} -------------------------------------------------------------------------------- /dist/ms-iis/css/main.css: -------------------------------------------------------------------------------- 1 | @import url("google-fonts.css");::-moz-selection{background:#fff;text-shadow:none}::selection{background:#fff;text-shadow:none}body{font-family:IBM Plex Mono,monospace;background:#000 url(../assets/imac.svg);background-repeat:no-repeat;background-position:center 30px;background-size:contain;color:silver;font-size:12pt}#errormsg{display:none}#echoerror{width:50%;text-align:left;position:absolute;top:9%;left:26%}#container{text-align:center;vertical-align:middle;margin-top:50%;margin-bottom:20%}#blink{animation:blinker 1s linear infinite;display:inline;color:#0f0}@keyframes blinker{50%{opacity:0}}.green{color:#5cb85c}.orange{color:#f0ad4e}.red{color:#d9534f}.cursor{color:#0f0} -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2 -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /dist/ms-iis/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/ms-iis/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dist/nginx/444.html: -------------------------------------------------------------------------------- 1 | 444 - No Response
:~$ Error 444!
No Response

Used internally to instruct the server to return no information to the client and close the connection immediately.
-------------------------------------------------------------------------------- /dist/nginx/494.html: -------------------------------------------------------------------------------- 1 | 494 - Request header too large
:~$ Error 494!
Request header too large

Client sent too large request or too long header line.
-------------------------------------------------------------------------------- /dist/nginx/495.html: -------------------------------------------------------------------------------- 1 | 495 - SSL Certificate Error
:~$ Error 495!
SSL Certificate Error

An expansion of the 400 Bad Request response code, used when the client has provided an invalid client certificate.
-------------------------------------------------------------------------------- /dist/nginx/496.html: -------------------------------------------------------------------------------- 1 | 496 - SSL Certificate Required
:~$ Error 496!
SSL Certificate Required

An expansion of the 400 Bad Request response code, used when a client certificate is required but not provided.
-------------------------------------------------------------------------------- /dist/nginx/497.html: -------------------------------------------------------------------------------- 1 | 497 - HTTP Request Sent to HTTPS Port
:~$ Error 497!
HTTP Request Sent to HTTPS Port

An expansion of the 400 Bad Request response code, used when the client has made a HTTP request to a port listening for HTTPS requests.
-------------------------------------------------------------------------------- /dist/nginx/499.html: -------------------------------------------------------------------------------- 1 | 499 - Client Closed Request
:~$ Error 499!
Client Closed Request

Used when the client has closed the request before the server could send a response.
-------------------------------------------------------------------------------- /dist/nginx/css/breakpoints.css: -------------------------------------------------------------------------------- 1 | @media only all and (min-width:48rem) and (max-width:59.938rem){body{width:135%}#echoerror{width:530px;top:9%;left:17%}}@media only all and (min-width:38rem) and (max-width:47.938rem){body{width:135%}#echoerror{width:425px;top:12%;left:17%}}@media only all and (max-width:37.938rem){body{background-position:left 30px;width:700px}#echoerror{width:330px;top:9%;left:5%}} -------------------------------------------------------------------------------- /dist/nginx/css/google-fonts.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1ea0-1ef9,U+20ab}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd} -------------------------------------------------------------------------------- /dist/nginx/css/main.css: -------------------------------------------------------------------------------- 1 | @import url("google-fonts.css");::-moz-selection{background:#fff;text-shadow:none}::selection{background:#fff;text-shadow:none}body{font-family:IBM Plex Mono,monospace;background:#000 url(../assets/imac.svg);background-repeat:no-repeat;background-position:center 30px;background-size:contain;color:silver;font-size:12pt}#errormsg{display:none}#echoerror{width:50%;text-align:left;position:absolute;top:9%;left:26%}#container{text-align:center;vertical-align:middle;margin-top:50%;margin-bottom:20%}#blink{animation:blinker 1s linear infinite;display:inline;color:#0f0}@keyframes blinker{50%{opacity:0}}.green{color:#5cb85c}.orange{color:#f0ad4e}.red{color:#d9534f}.cursor{color:#0f0} -------------------------------------------------------------------------------- /dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2 -------------------------------------------------------------------------------- /dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /dist/nginx/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/nginx/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dist/other/420.html: -------------------------------------------------------------------------------- 1 | 420 - Rate Limit
:~$ Error 420!
Rate Limit

The best thing to do is to slow down with your requests and try again in a few minutes.
-------------------------------------------------------------------------------- /dist/other/520.html: -------------------------------------------------------------------------------- 1 | 520 - Origin Error - Unknown Host
:~$ Error 520!
Origin Error - Unknown Host

The requested hostname is not routed. Use only hostnames to access resources.
-------------------------------------------------------------------------------- /dist/other/521.html: -------------------------------------------------------------------------------- 1 | 521 - Webservice currently unavailable
:~$ Error 521!
Webservice currently unavailable

There is an error with the backend upstream cluster. Please try again later.
-------------------------------------------------------------------------------- /dist/other/533.html: -------------------------------------------------------------------------------- 1 | 533 - Scheduled Maintenance
:~$ Error 533!
Scheduled Maintenance

This site is currently down for maintenance. Our team is working hard to bring it back online soon.
-------------------------------------------------------------------------------- /dist/other/900.html: -------------------------------------------------------------------------------- 1 | 900 - Invalid Domain
:~$ Error 900!
Invalid Domain

This domain is unsupported by the server.
-------------------------------------------------------------------------------- /dist/other/901.html: -------------------------------------------------------------------------------- 1 | 901 - Temporary Maintenance
:~$ Error 901!
Temporary Maintenance

The web server is currently undergoing some maintenance.
-------------------------------------------------------------------------------- /dist/other/902.html: -------------------------------------------------------------------------------- 1 | 902 - Rate Limit
:~$ Error 902!
Rate Limit

The best thing to do is to slow down with your requests and try again in a few minutes.
-------------------------------------------------------------------------------- /dist/other/css/breakpoints.css: -------------------------------------------------------------------------------- 1 | @media only all and (min-width:48rem) and (max-width:59.938rem){body{width:135%}#echoerror{width:530px;top:9%;left:17%}}@media only all and (min-width:38rem) and (max-width:47.938rem){body{width:135%}#echoerror{width:425px;top:12%;left:17%}}@media only all and (max-width:37.938rem){body{background-position:left 30px;width:700px}#echoerror{width:330px;top:9%;left:5%}} -------------------------------------------------------------------------------- /dist/other/css/google-fonts.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2) format("woff2");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2) format("woff2");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2) format("woff2");unicode-range:U+0102-0103,U+0110-0111,U+1ea0-1ef9,U+20ab}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2) format("woff2");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:IBM Plex Mono;font-style:normal;font-weight:400;src:local("IBM Plex Mono"),local("IBMPlexMono"),url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2) format("woff2");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd} -------------------------------------------------------------------------------- /dist/other/css/main.css: -------------------------------------------------------------------------------- 1 | @import url("google-fonts.css");::-moz-selection{background:#fff;text-shadow:none}::selection{background:#fff;text-shadow:none}body{font-family:IBM Plex Mono,monospace;background:#000 url(../assets/imac.svg);background-repeat:no-repeat;background-position:center 30px;background-size:contain;color:silver;font-size:12pt}#errormsg{display:none}#echoerror{width:50%;text-align:left;position:absolute;top:9%;left:26%}#container{text-align:center;vertical-align:middle;margin-top:50%;margin-bottom:20%}#blink{animation:blinker 1s linear infinite;display:inline;color:#0f0}@keyframes blinker{50%{opacity:0}}.green{color:#5cb85c}.orange{color:#f0ad4e}.red{color:#d9534f}.cursor{color:#0f0} -------------------------------------------------------------------------------- /dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2 -------------------------------------------------------------------------------- /dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /dist/other/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /dist/other/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dist/other/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /dist/other/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dist/other/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /dist/other/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dist/other/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /dist/other/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dist/other/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /dist/other/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dist/other/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /dist/other/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/dist/other/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /licenses/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font Awesome Free License 2 | ------------------------- 3 | 4 | Font Awesome Free is free, open source, and GPL friendly. You can use it for 5 | commercial projects, open source projects, or really almost whatever you want. 6 | Full Font Awesome Free license: https://fontawesome.com/license. 7 | 8 | # Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) 9 | In the Font Awesome Free download, the CC BY 4.0 license applies to all icons 10 | packaged as SVG and JS file types. 11 | 12 | # Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) 13 | In the Font Awesome Free download, the SIL OLF license applies to all icons 14 | packaged as web and desktop font files. 15 | 16 | # Code: MIT License (https://opensource.org/licenses/MIT) 17 | In the Font Awesome Free download, the MIT license applies to all non-font and 18 | non-icon files. 19 | 20 | # Attribution 21 | Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font 22 | Awesome Free files already contain embedded comments with sufficient 23 | attribution, so you shouldn't need to do anything additional when using these 24 | files normally. 25 | 26 | We've kept attribution comments terse, so we ask that you do not actively work 27 | to remove them from files, especially code. They're a great way for folks to 28 | learn about Font Awesome. 29 | 30 | # Brand Icons 31 | All brand icons are trademarks of their respective owners. The use of these 32 | trademarks does not indicate endorsement of the trademark holder by Font 33 | Awesome, nor vice versa. **Please do not use brand logos for any purpose except 34 | to represent the company, product, or service to which they refer.** 35 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webserver-error-pages", 3 | "description": "Drop-in replacement of 54 beautifully designed error pages.", 4 | "homepage": "https://hartman.me/", 5 | "version": "2.1.0", 6 | "author": "Justin Hartman", 7 | "license": "AGPL-3.0", 8 | "repository": { 9 | "type": "git", 10 | "url": "git+https://github.com/justinhartman/Apache-Error-Pages.git" 11 | }, 12 | "bugs": { 13 | "url": "https://github.com/justinhartman/Apache-Error-Pages/issues" 14 | }, 15 | "devDependencies": { 16 | "css-mqpacker": "^7.0.0", 17 | "cssnano": "^4.1.10", 18 | "postcss-cli": "^7.1.1", 19 | "postcss-import": "^12.0.1", 20 | "uglify-js": "^3.9.4" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require('cssnano')({ 4 | preset: ['default', { 5 | discardComments: { 6 | removeAll: true, 7 | }, 8 | }] 9 | }), 10 | ], 11 | }; 12 | 13 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | *.md 3 | !/docs/ 4 | -------------------------------------------------------------------------------- /src/apache/401.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 401 - Unauthorized 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 401!
26 | Unauthorized
27 |
28 | The response must include a WWW-Authenticate header field containing a challenge applicable to the requested resource. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/403.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 403 - Forbidden 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 403!
26 | Forbidden
27 |
28 | The request was valid, but the server is refusing action.
29 | The user might not have the necessary permissions for a resource, or may need an account of some sort. 30 |
31 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /src/apache/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 404 - Resource not found 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 404!
26 | Resource not found
27 |
28 | The requested resource could not be found but may be available again in the future. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/406.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 406 - Not Acceptable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 406!
26 | Not Acceptable
27 |
28 | The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/407.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 407 - Proxy Authentication Required 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 407!
26 | Proxy Authentication Required
27 |
28 | The client must first authenticate itself with the proxy. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/408.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 408 - Request Timeout 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 408!
26 | Request Timeout
27 |
28 | The server timed out waiting for the request. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/411.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 411 - Length Required 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 411!
26 | Length Required
27 |
28 | The request did not specify the length of its content, which is required by the requested resource. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/413.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 413 - Payload Too Large 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 413!
26 | Payload Too Large
27 |
28 | The request is larger than the server is willing or able to process. Previously called 'Request Entity Too Large'. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/414.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 414 - URI Too Long 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 414!
26 | URI Too Long
27 |
28 | The URI provided was too long for the server to process. 29 |
30 | 31 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /src/apache/415.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 415 - Unsupported Media Type 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 415!
26 | Unsupported Media Type
27 |
28 | The request entity has a media type which the server or resource does not support. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/423.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 423 - Locked 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 423!
26 | Locked
27 |
28 | The resource that is being accessed is locked. 29 |
30 | 33 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /src/apache/429.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 429 - Too Many Requests 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 429!
26 | Too Many Requests
27 |
28 | The user has sent too many requests in a given amount of time. Intended for use with rate-limiting schemes. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/431.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 431 - Request Header Fields Too Large 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 431!
26 | Request Header Fields Too Large
27 |
28 | The server is unwilling to process the request because either an individual header field, or all the header fields collectively, are too large. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 500 - Internal Server Error 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 500!
26 | Internal Server Error
27 |
28 | A generic error message, given when an unexpected condition was encountered and no more specific message is suitable. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/501.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 501 - Not Implemented 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 501!
26 | Not Implemented
27 |
28 | The server either does not recognize the request method, or it lacks the ability to fulfil the request. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/502.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 502 - Bad Gateway 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 502!
26 | Bad Gateway
27 |
28 | The server was acting as a gateway or proxy and received an invalid response from the upstream server. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/503.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 503 - Service Unavailable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 503!
26 | Service Unavailable
27 |
28 | The server is currently unavailable (because it is overloaded or down for maintenance). 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/504.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 504 - Gateway Timeout 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 504!
26 | Gateway Timeout
27 |
28 | The server was acting as a gateway or proxy and did not receive a timely response from the upstream server. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/505.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 505 - HTTP Version Not Supported 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 505!
26 | HTTP Version Not Supported
27 |
28 | The server does not support the HTTP protocol version used in the request. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/506.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 506 - Variant Also Negotiates 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 506!
26 | Variant Also Negotiates
27 |
28 | Transparent content negotiation for the request results in a circular reference. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/507.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 507 - Insufficient Storage 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 507!
26 | Insufficient Storage
27 |
28 | The server is unable to store the representation needed to complete the request. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/508.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 508 - Loop Detected 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 508!
26 | Loop Detected
27 |
28 | The server detected an infinite loop while processing the request (sent in lieu of 208 Already Reported). 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/apache/510.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 510 - Not Extended 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 510!
26 | Not Extended
27 |
28 | Further extensions to the request are required for the server to fulfil it. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/css/breakpoints.css: -------------------------------------------------------------------------------- 1 | /* Responsive Breakpoints for the Error pages. */ 2 | @media only all and (min-width:48rem) and (max-width:59.938rem) { 3 | body{ 4 | width: 135%; 5 | } 6 | #echoerror { 7 | width: 530px; 8 | top: 9%; 9 | left: 17%; 10 | } 11 | }@media only all and (min-width:38rem) and (max-width:47.938rem) { 12 | body{ 13 | width: 135%; 14 | } 15 | #echoerror { 16 | width: 425px; 17 | top: 12%; 18 | left: 17%; 19 | } 20 | }@media only all and (max-width:37.938rem) { 21 | body{ 22 | background-position: left 30px; 23 | width: 700px; 24 | } 25 | #echoerror { 26 | width: 330px; 27 | top: 9%; 28 | left: 5%; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/css/google-fonts.css: -------------------------------------------------------------------------------- 1 | /* cyrillic-ext */ 2 | @font-face { 3 | font-family: 'IBM Plex Mono'; 4 | font-style: normal; 5 | font-weight: 400; 6 | src: local('IBM Plex Mono'), local('IBMPlexMono'), url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2) format('woff2'); 7 | unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; 8 | } 9 | /* cyrillic */ 10 | @font-face { 11 | font-family: 'IBM Plex Mono'; 12 | font-style: normal; 13 | font-weight: 400; 14 | src: local('IBM Plex Mono'), local('IBMPlexMono'), url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2) format('woff2'); 15 | unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; 16 | } 17 | /* vietnamese */ 18 | @font-face { 19 | font-family: 'IBM Plex Mono'; 20 | font-style: normal; 21 | font-weight: 400; 22 | src: local('IBM Plex Mono'), local('IBMPlexMono'), url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2) format('woff2'); 23 | unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB; 24 | } 25 | /* latin-ext */ 26 | @font-face { 27 | font-family: 'IBM Plex Mono'; 28 | font-style: normal; 29 | font-weight: 400; 30 | src: local('IBM Plex Mono'), local('IBMPlexMono'), url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2) format('woff2'); 31 | unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; 32 | } 33 | /* latin */ 34 | @font-face { 35 | font-family: 'IBM Plex Mono'; 36 | font-style: normal; 37 | font-weight: 400; 38 | src: local('IBM Plex Mono'), local('IBMPlexMono'), url(../webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2) format('woff2'); 39 | unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; 40 | } 41 | -------------------------------------------------------------------------------- /src/css/main.css: -------------------------------------------------------------------------------- 1 | @import url('google-fonts.css'); 2 | ::-moz-selection { 3 | background: #fff; 4 | text-shadow: none; 5 | } 6 | ::selection { 7 | background: #fff; 8 | text-shadow: none; 9 | } 10 | body { 11 | font-family: 'IBM Plex Mono', monospace; 12 | background: #000 url('../assets/imac.svg'); 13 | background-repeat: no-repeat; 14 | background-position: center 30px; 15 | background-size: contain; 16 | color: #C0C0C0; 17 | font-size: 12pt; 18 | } 19 | #errormsg { 20 | display: none 21 | } 22 | #echoerror { 23 | width: 50%; 24 | text-align: left; 25 | position: absolute; 26 | top: 9%; 27 | left: 26%; 28 | } 29 | #container { 30 | text-align: center; 31 | vertical-align: middle; 32 | margin-top: 50%; 33 | margin-bottom: 20%; 34 | } 35 | #blink { 36 | animation: blinker 1s linear infinite; 37 | display: inline; 38 | color: #0F0; 39 | } 40 | @keyframes blinker { 41 | 50% { 42 | opacity: 0; 43 | } 44 | } 45 | .green { 46 | color:#5cb85c; 47 | } 48 | .orange { 49 | color:#f0ad4e; 50 | } 51 | .red { 52 | color:#d9534f; 53 | } 54 | .cursor { 55 | color: #0F0; 56 | } 57 | -------------------------------------------------------------------------------- /src/docs/404-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/docs/404-preview.mp4 -------------------------------------------------------------------------------- /src/docs/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/docs/desktop.png -------------------------------------------------------------------------------- /src/docs/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/docs/mobile.png -------------------------------------------------------------------------------- /src/docs/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/docs/preview.gif -------------------------------------------------------------------------------- /src/docs/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/docs/tablet.png -------------------------------------------------------------------------------- /src/ms-iis/440.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 440 - Login Time-out 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 440!
26 | Login Time-out
27 |
28 | The client's session has expired and must log in again. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/ms-iis/449.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 449 - Retry With 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 449!
26 | Retry With
27 |
28 | The server cannot honour the request because the user has not provided the required information. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/ms-iis/451.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 451 - Redirect 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 451!
26 | Redirect
27 |
28 | Used in Exchange ActiveSync when either a more efficient server is available or the server cannot access the users' mailbox. The client is expected to re-run the HTTP AutoDiscover operation to find a more appropriate server. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/nginx/444.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 444 - No Response 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 444!
26 | No Response
27 |
28 | Used internally to instruct the server to return no information to the client and close the connection immediately. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/nginx/494.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 494 - Request header too large 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 494!
26 | Request header too large
27 |
28 | Client sent too large request or too long header line. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/nginx/495.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 495 - SSL Certificate Error 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 495!
26 | SSL Certificate Error
27 |
28 | An expansion of the 400 Bad Request response code, used when the client has provided an invalid client certificate. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/nginx/496.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 496 - SSL Certificate Required 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 496!
26 | SSL Certificate Required
27 |
28 | An expansion of the 400 Bad Request response code, used when a client certificate is required but not provided. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/nginx/497.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 497 - HTTP Request Sent to HTTPS Port 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 497!
26 | HTTP Request Sent to HTTPS Port
27 |
28 | An expansion of the 400 Bad Request response code, used when the client has made a HTTP request to a port listening for 29 | HTTPS requests. 30 |
31 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /src/nginx/499.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 499 - Client Closed Request 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 499!
26 | Client Closed Request
27 |
28 | Used when the client has closed the request before the server could send a response. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/other/420.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 420 - Rate Limit 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 420!
26 | Rate Limit
27 |
28 | The best thing to do is to slow down with your requests and try again in a few minutes. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/other/520.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 520 - Origin Error - Unknown Host 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 520!
26 | Origin Error - Unknown Host
27 |
28 | The requested hostname is not routed. Use only hostnames to access resources. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/other/521.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 521 - Webservice currently unavailable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 521!
26 | Webservice currently unavailable
27 |
28 | There is an error with the backend upstream cluster. Please try again later. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/other/533.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 533 - Scheduled Maintenance 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 533!
26 | Scheduled Maintenance
27 |
28 | This site is currently down for maintenance. Our team is working hard to bring it back online soon. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/other/900.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 900 - Invalid Domain 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 900!
26 | Invalid Domain
27 |
28 | This domain is unsupported by the server. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/other/901.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 901 - Temporary Maintenance 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 901!
26 | Temporary Maintenance
27 |
28 | The web server is currently undergoing some maintenance. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/other/902.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 902 - Rate Limit 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 22 |
23 |
24 |
25 | :~$ Error 902!
26 | Rate Limit
27 |
28 | The best thing to do is to slow down with your requests and try again in a few minutes. 29 |
30 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2 -------------------------------------------------------------------------------- /src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2 -------------------------------------------------------------------------------- /src/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinhartman/Webserver-Error-Pages/a3b2903afe7ee6040802c60836ea6ce80b6568c6/src/static/webfonts/fa-solid-900.woff2 --------------------------------------------------------------------------------