Пользовательские страницы ошибок NGINX не будут работать

Мой сервер не хочет отображать пользовательскую страницу ошибки 500.

Страница ошибки для ошибки 500 здесь:

https://aixspace.de/errorpages/500-504/500.html

это мои конфиги vhost:

server {
    listen   80; ## listen for ipv4; this line is default and implied
    #listen   [::]:80 default ipv6only=on; ## listen for ipv6
    root /usr/share/nginx/www;
    ...


    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/tmp/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
            deny all;
    }

}

сервер {слушай 443; }

    #Errorpages

    error_page 500 /500.html;
    location = /errorpages/500-504/500.html {
       root  /usr/share/nginx/www;
   }

    location ~ /\.ht {

}}

У кого-нибудь есть идеи, почему сервер не работает с этой страницей ошибок?

0 ответов

Другие вопросы по тегам