Add lines for error page in direct access

This commit is contained in:
Fredrik Baberg 2022-09-27 14:20:28 +02:00
parent 4b33079a39
commit 33009ca2b9

View File

@ -16,4 +16,9 @@ server {
client_max_body_size 0;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}