comparison src/os/unix/ngx_files.h @ 478:f2c6a7373274 NGINX_0_7_51

nginx 0.7.51 *) Feature: the "try_files" directive supports a response code in the fallback parameter. *) Feature: now any response code can be used in the "return" directive. *) Bugfix: the "error_page" directive made an external redirect without query string; the bug had appeared in 0.7.44. *) Bugfix: if servers listened on several defined explicitly addresses, then virtual servers might not work; the bug had appeared in 0.7.39.
author Igor Sysoev <http://sysoev.ru>
date Sun, 12 Apr 2009 00:00:00 +0400
parents 6866b490272e
children 392c16f2d858
comparison
equal deleted inserted replaced
477:ba2ea8c4d60f 478:f2c6a7373274
61 #define NGX_FILE_RDONLY O_RDONLY 61 #define NGX_FILE_RDONLY O_RDONLY
62 #define NGX_FILE_WRONLY O_WRONLY 62 #define NGX_FILE_WRONLY O_WRONLY
63 #define NGX_FILE_RDWR O_RDWR 63 #define NGX_FILE_RDWR O_RDWR
64 #define NGX_FILE_CREATE_OR_OPEN O_CREAT 64 #define NGX_FILE_CREATE_OR_OPEN O_CREAT
65 #define NGX_FILE_OPEN 0 65 #define NGX_FILE_OPEN 0
66 #define NGX_FILE_TRUNCATE O_TRUNC 66 #define NGX_FILE_TRUNCATE O_CREAT|O_TRUNC
67 #define NGX_FILE_APPEND O_WRONLY|O_APPEND 67 #define NGX_FILE_APPEND O_WRONLY|O_APPEND
68 68
69 #define NGX_FILE_DEFAULT_ACCESS 0644 69 #define NGX_FILE_DEFAULT_ACCESS 0644
70 #define NGX_FILE_OWNER_ACCESS 0600 70 #define NGX_FILE_OWNER_ACCESS 0600
71 71