docs: document fallback pages provided by the service#7
Open
MikkelHebel wants to merge 1 commit into
Open
Conversation
|
All Contributors have signed the CLA. Thank you for your cooperation! |
Member
Author
|
I have read the CLA Document and I hereby sign the CLA |
2 tasks
The0mikkel
requested changes
Jul 10, 2026
Comment on lines
+48
to
+59
| <details> | ||
| <summary>Preview of each page</summary> | ||
|
|
||
| | | | | ||
| | --- | --- | | ||
| | **Index**  | **401 Unauthorized**  | | ||
| | **403 Forbidden**  | **404 Not found**  | | ||
| | **405 Method Not Allowed**  | **500 Error**  | | ||
| | **502 Bad gateway**  | **503 No service available**  | | ||
| | **504 Gateway timeout**  | | | ||
|
|
||
| </details> |
Member
There was a problem hiding this comment.
It would be good to mention, that the screenshot are from the light mode, and dark mode is active if the system preffers dark.
Comment on lines
+38
to
+46
| | `index.html` | Error | Generic fallback page for errors that don't have a more specific page | | ||
| | `401.html` | Unauthorized | Authentication is required to access this resource | | ||
| | `403.html` | Forbidden | The request is authenticated but the caller doesn't have permission | | ||
| | `404.html` | Not found | The requested page could not be found | | ||
| | `405.html` | Method Not Allowed | The HTTP method used is not supported for the requested resource | | ||
| | `500.html` | Error | Same generic message as `index.html`, with an added link back to the home page | | ||
| | `502.html` | Bad gateway | The service did not respond correctly | | ||
| | `503.html` | No service available | The service is temporarily unavailable, e.g. while restarting or under maintenance | | ||
| | `504.html` | Gateway timeout | The service did not respond in time, e.g. while restarting or under maintenance | |
Member
There was a problem hiding this comment.
Nitpick: The "Intended use" column's text should have a "." at the end of the sentences.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a
## Pagessection to the README documenting every page this service can serve, what triggers each one, and what it looks like.docs/images/, captured by runninggenerator.pyThis closes #6