12 lines
343 B
Plaintext
12 lines
343 B
Plaintext
# Custom Error Pages Snippet
|
|
# Include this file INSIDE a server block
|
|
|
|
# Custom error pages
|
|
error_page 502 @error_502;
|
|
error_page 503 @error_503;
|
|
error_page 504 @error_504;
|
|
|
|
# Named locations for error handling
|
|
# These should be defined in the server block, not here
|
|
# The including site config should define its own error handling locations
|