2
0
mirror of https://github.com/tmiland/Nginx-Maintenance-Mode synced 2024-09-18 09:41:35 +02:00
Nginx-Maintenance-Mode/error_pages.conf

31 lines
735 B
Plaintext
Raw Normal View History

include snippets/error_pages_content.conf;
location = /403-error.html {
root /etc/nginx/html/server-error-pages/_site;
internal;
}
location = /404-error.html {
root /etc/nginx/html/server-error-pages/_site;
internal;
}
location = /rate-limit-error.html { # 444-error
root /etc/nginx/html/server-error-pages/_site;
internal;
}
location = /500-error.html {
root /etc/nginx/html/server-error-pages/_site;
internal;
}
location = /502-error.html {
root /etc/nginx/html/server-error-pages/_site;
internal;
}
location = /503-error.html {
root /etc/nginx/html/server-error-pages/_site;
internal;
}
location = /504-error.html {
root /etc/nginx/html/server-error-pages/_site;
internal;
}