Antwort

14

Sicher, Sie können aber auf indirekte Weise:

error_page 500 /500.html; 
location = /500.html { 
     root /usr/var/nginx/errors; 
     allow all; 
     internal; 
} 

sehen http://wiki.nginx.org/HttpCoreModule#error_page

+3

Bitte beachten Sie dies innerhalb 'http' Blöcke nicht. –

+0

@magu [offizielle Dokumente] (http://nginx.org/en/docs/http/ngx_http_core_module.html#error_page) sagt, dass es auch im 'http' Kontext funktioniert. Welche Version von nginx verwenden Sie? – number5

+4

'error_page' funktioniert. 'location' nicht. –