Custom Query (2296 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 2296)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#46 fixed Changeset 3900 st_blocks and ZFS problem somebody Yasar Semih Alev
Description

Hi,

stat->st_blocks give wrong filesize information on FreeBSD with ZFS filesystem. Nginx cache max_size exceed and filesystem is full sometime later. I searched the problem and see the changes in 3900 and i changed this;

#define ngx_file_fs_size(sb) ((sb)->st_blocks * 512) to #define ngx_file_fs_size(sb) (sb)->st_size

The problem solved with this change but I know this change for filesize precise and I/O operations but ZFS st_blocks very different. I googled and read some discussions about these. May be same problem occur on Solaris with ZFS filesystem.

Thanks.

Kind Regards

Semih Alev

#47 fixed loop with backup servers and proxy_next_upstream http_404 somebody Yasar Semih Alev
Description

Hi,

I added backup upstream server and proxy_next_upstream http_404 in conf if master upstream servers send 404 Nginx is trying from backup upstream. If backup upstream send 404, Nginx is starting loop on backup upstream and nonstop request same file.

I searched the problem and changed these codes in ngx_http_upstream.c and problem solved but I don't know exactly maybe wrong changes.

< if (ft_type == NGX_HTTP_UPSTREAM_FT_HTTP_404) { < state = NGX_PEER_NEXT; < } else { < state = NGX_PEER_FAILED; < } ---

state = NGX_PEER_FAILED;

Thanks.

Kind Regards

Semih Alev

#48 fixed Cannot build nginx on OpenSolaris: builder of perl modules cannot find pcre.h somebody eXeC001er
Description

on my system pcre.h locates in /usr/include/prce. configure-scripts found it and binary modules were built successfully, but during build perl modules builder looks to /usr/include instead of /usr/include/prce

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