Welcome! Log In Create A New Profile

Advanced

$request_uri greater than 8 characters causes core dump

October 14, 2012 07:21PM
Nginx dumps core if the $request_uri is not found and is more than 8 characters. For example:

$ GET -Sed http://localhost/en/12345
GET http://localhost/en/12345
200 OK
Connection: close
Date: Sun, 14 Oct 2012 23:13:40 GMT
Accept-Ranges: bytes
Server: nginx/1.1.19
Content-Length: 4464
Content-Type: text/html
Last-Modified: Sun, 14 Oct 2012 22:21:45 GMT
Client-Date: Sun, 14 Oct 2012 23:13:40 GMT
Client-Peer: 127.0.0.1:80
Client-Response-Num: 1
Title: Page Not Found :(
X-Meta-Charset: utf-8

$ GET -Sed http://localhost/en/123456
GET http://localhost/en/123456
500 Server closed connection without sending any data back
Content-Type: text/plain
Client-Date: Sun, 14 Oct 2012 23:13:43 GMT
Client-Warning: Internal response

But a longer $request_uri that is found is OK. For example:

$ GET -Sed http://localhost/en/about/index.html
GET http://localhost/en/about/index.html
200 OK
Connection: close
Date: Sun, 14 Oct 2012 23:15:20 GMT
Accept-Ranges: bytes
Server: nginx/1.1.19
Content-Length: 3050
Content-Type: text/html
Last-Modified: Sun, 14 Oct 2012 19:37:32 GMT
Client-Date: Sun, 14 Oct 2012 23:15:20 GMT
Client-Peer: 127.0.0.1:80
Client-Response-Num: 1
Title:
X-Meta-Author:
X-Meta-Charset: utf-8

This is on Ubuntu 12.04 x86 64-bit with nginx 1.1.19 (the `nginx-light` package).

This is my setup:

server {
listen 80;
server_name localhost;

root /srv/www/site;
index index.html;

error_page 404 = @404;

location @404 {
try_files /404.html /404/index.html;
}

location ~ ^/(404|css|js|font|img|en|es) {
try_files $uri $uri/ =404;
}

location / {
rewrite ^ $scheme://$server_name:$server_port/en$request_uri? redirect;
}
}

What in the world? Thanks.

-Tom
Subject Author Posted

$request_uri greater than 8 characters causes core dump

tvaughan October 14, 2012 07:21PM

Re: $request_uri greater than 8 characters causes core dump

VBart October 15, 2012 03:42AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 250
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready