times_new_nginx/configuration/error_pages.conf

13 lines
251 B
Plaintext
Raw Permalink Normal View History

2024-09-03 21:00:49 +03:00
error_page 404 /404.html;
error_page 502 /502.html;
location = /404.html {
root /etc/nginx/error-pages/404;
proxy_intercept_errors on;
internal;
}
location = /502.html {
root /etc/nginx/error-pages/502;
proxy_intercept_errors on;
internal;
}