Opened 8 years ago

Closed 8 years ago

#1061 closed defect (invalid)

Can not override error page 400

Reported by: steffenmaas.de@… Owned by:
Priority: minor Milestone:
Component: nginx-core Version: 1.6.x
Keywords: error_page Cc:
uname -a: Linux director-dev.voipfuture.com 3.10.0-327.22.2.el7.x86_64 #1 SMP Thu Jun 23 17:05:11 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
nginx -V: nginx version: nginx/1.6.3
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_spdy_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module --with-http_image_filter_module --with-http_geoip_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_stub_status_module --with-http_perl_module --with-mail --with-mail_ssl_module --with-pcre --with-pcre-jit --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'

Description

As a simple example, try this configuration:

server {
  listen 443 ssl default_server;

  ssl_verify_client       on;

  error_page 400 /auth_required.html;

  ...

Without sending a ssl cert, I still get the default nginx error page for a 400 Bad Request.

I attached the full configuration file.

Attachments (1)

complete-nginx-error-page-example.conf (1.6 KB ) - added by steffenmaas.de@… 8 years ago.
complete example configuration

Download all attachments as: .zip

Change History (2)

by steffenmaas.de@…, 8 years ago

complete example configuration

comment:1 by Maxim Dounin, 8 years ago

Resolution: invalid
Status: newclosed

The "client sent no required SSL certificate" errors are reported with a special error code, 496, and you have to use

error_page 496 /auth_required.html;

to handle them. Additional details can be found in the documentation.

Note: See TracTickets for help on using tickets.