Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 2297)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#297 worksforme Reopen log files via kill -s USR1 PID don't work Igor Zubkov
Description

Hi!

I am using nginx 1.2.4 (from ALT Linux Sisyphus package nginx-1.2.4-alt1). Simple:

kill -s USR1 PID

don't work. nginx don't reopen new access.log as it should.

#298 wontfix Support X-accel-redirect with webdav PUT David Butler
Description

To reproduce:

nginx.conf excerpt:

location /tmp/ {

alias /tmp/; autoindex on; dav_methods PUT;

}

location /test/ {

proxy_pass http://localhost:8000; proxy_set_header X-Real-IP $remote_addr; proxy_pass_request_body off; proxy_set_header Content-Length 0;

}

on a console: socat TCP-LISTEN:8000,reuseaddr,crlf stdio

chrome console: var xhr = new XMLHttpRequest() xhr.open("put", "http://<scrubbed>/test/1234") xhr.send("fubar")

socat: PUT /test/1234 HTTP/1.0 X-Real-IP: <scrubbed> Content-Length: 0 Host: localhost:8000 Connection: close Cache-Control: no-cache Pragma: no-cache Origin: http://<scrubbed> User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.57 Safari/537.17 Content-Type: application/xml Accept: */* Referer: http://<scrubbed>/ Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

HTTP/1.0 200 X-Accel-Redirect: /tmp/asdf

nginx/error.log:

2013/02/13 20:08:12 [error] 1494#0: *12474 open() "/tmp/asdf" failed (2: No such file or directory), client: 192.168.8.189, server: , request: "PUT /test/1234 HTTP/1.1", upstream: "http://127.0.0.1:8000/test/1234", host: "<scrubbed>, referrer: "<scrubbed>"

If I try to do a PUT request directly, it creates the file...

#299 worksforme Connect Peer Segmentation Fault Yasar Semih Alev
Description

Dear All,

This week we received a lot of segmentation fault. I debugged and you can see below my gdb examine.

#0 0x000000000042dc5b in ngx_event_connect_peer (pc=0x8551b43f0) at src/event/ngx_event_connect.c:30 30 s = ngx_socket(pc->sockaddr->sa_family, SOCK_STREAM, 0);

(gdb) bt #0 0x000000000042dc5b in ngx_event_connect_peer (pc=0x8551b43f0) at src/event/ngx_event_connect.c:30 #1 0x000000000045ce2d in ngx_http_upstream_connect (r=0x801ffd050, u=0x8551b43e0) at src/http/ngx_http_upstream.c:1135 #2 0x000000000045eb1d in ngx_http_upstream_init_request (r=0x801ffd050) at src/http/ngx_http_upstream.c:660 #3 0x0000000000453065 in ngx_http_read_client_request_body (r=0x801ffd050, post_handler=0x45ef90 <ngx_http_upstream_init>) at src/http/ngx_http_request_body.c:159 #4 0x00000000004846a7 in ngx_http_proxy_handler (r=0x801ffd050) at src/http/modules/ngx_http_proxy_module.c:703 #5 0x0000000000444edc in ngx_http_core_content_phase (r=0x801ffd050, ph=0x8020df068) at src/http/ngx_http_core_module.c:1411 #6 0x000000000043f82d in ngx_http_core_run_phases (r=0x801ffd050) at src/http/ngx_http_core_module.c:891 #7 0x000000000044a949 in ngx_http_process_request (r=0x801ffd050) at src/http/ngx_http_request.c:1678 #8 0x000000000044b88e in ngx_http_process_request_line (rev=0x802a0ddf0) at src/http/ngx_http_request.c:915 #9 0x000000000042ca34 in ngx_event_process_posted (cycle=0x801632050, posted=0x6227b0) at src/event/ngx_event_posted.c:40 #10 0x0000000000433a46 in ngx_worker_process_cycle (cycle=0x801632050, data=Variable "data" is not available. ) at src/os/unix/ngx_process_cycle.c:807 #11 0x000000000043237c in ngx_spawn_process (cycle=0x801632050, proc=0x433980 <ngx_worker_process_cycle>, data=0x11, name=0x4dc7bc "worker process", respawn=51) at src/os/unix/ngx_process.c:198 #12 0x0000000000434a16 in ngx_master_process_cycle (cycle=0x801632050) at src/os/unix/ngx_process_cycle.c:619 #13 0x00000000004164de in main (argc=Variable "argc" is not available. ) at src/core/nginx.c:412

(gdb) p pc->sockaddr $1 = (struct sockaddr *) 0x0

I think peer connection sockaddr is null.

Thanks.

Kind Regards

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.