Update Custom error page with nginx

2026-05-29 13:36:27 +00:00
parent c5ead611f1
commit 8738f85409

@@ -34,6 +34,12 @@ Now edit the site's nginx config:
sudo nano /etc/nginx/sites-available/default
```
Add in the following line inside `server { ... }`
```
error_page 502 /502.html;
```
Add in the following section after `location / { ... }`
```