You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
custom-error-page/README.md

15 lines
396 B

# CUSTOM-ERROR-PAGE
2 years ago
This project is forked from https://gitlab.com/MaxGaultier/custom-error-page
Page custom pour les 40X et 50x pour nginx.
2 years ago
## UTILISATION
### CONFIGURATION NGINX (à insérer dans le block HTTPS):
```bash
error_page 400 404 500 502 503 504 /custom-error-page.html;
location = /custom-error-page.html {
root /usr/share/nginx/html;
internal;
}
2 years ago
```