11 lines
185 B
Text
11 lines
185 B
Text
# Build error access
|
|
error_page 403 /error/403.html;
|
|
location = /error/403.html {
|
|
internal;
|
|
}
|
|
|
|
error_page 404 @error404;
|
|
|
|
location @error404 {
|
|
rewrite ^ /error/404.html last;
|
|
}
|