nginx/templates/vhosts/partials/errors.j2
2021-05-27 11:23:22 +02:00

24 lines
469 B
Django/Jinja

{% if errorpage is defined and errorpage is False %}
error_page 401 /401.html;
location = /401.html {
root /var/www/html/errors/;
internal;
auth_basic off;
}
error_page 403 /403.html;
location = /403.html {
root /var/www/html/errors/;
internal;
}
error_page 502 /502.html;
location = /502.html {
root /var/www/html/errors/;
internal;
}
error_page 503 /503.html;
location = /503.html {
root /var/www/html/errors/;
internal;
}
{% endif %}