Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-08-30 | Lib unit tests have been renamed to tests. | Igor Sysoev | 23 | -337/+326 | |
2017-08-29 | The process type enum exposed to go module. | Max Romanov | 6 | -15/+29 | |
2017-08-29 | Fixed debug message broken in e8da77a2c293. | Max Romanov | 1 | -4/+3 | |
2017-08-29 | Using NXT_GO variable instead of explicit go. | Max Romanov | 1 | -4/+4 | |
2017-08-29 | Store and use NXT_LIBRT for go module. | Max Romanov | 3 | -1/+4 | |
2017-08-29 | Separation of module prerequisites for 'all' target in Makefile. | Max Romanov | 3 | -6/+6 | |
To avoid using sed -i. | |||||
2017-08-29 | The master process has been renamed to the main process. | Igor Sysoev | 16 | -123/+123 | |
2017-08-29 | Improved English. | Igor Sysoev | 3 | -11/+11 | |
2017-08-28 | Improved reconfiguration requests serialization. | Valentin Bartenev | 1 | -81/+49 | |
Previously, only applying of updated configuration was serialized, while the changes themselves could be done in parallel on the same configuration. That resulted in inconsistent behaviour. | |||||
2017-08-28 | Fixed nxt_job_file_read_data(). | Valentin Bartenev | 1 | -1/+1 | |
Obviously it should read data into the free region of buffer. The "free" pointer is respectively shifted in the code below. | |||||
2017-08-26 | Added configuration summary. | Igor Sysoev | 2 | -0/+24 | |
2017-08-26 | Added configure and command line option --help. | Igor Sysoev | 8 | -42/+154 | |
2017-08-26 | Added configure and command line option --control. | Igor Sysoev | 6 | -39/+53 | |
2017-08-26 | Added configure and command line option --modules. | Igor Sysoev | 5 | -2/+41 | |
2017-08-26 | Added configure option --user=USER and --group=GROUP. | Igor Sysoev | 4 | -11/+40 | |
2017-08-26 | Added configure option --pid=FILE. | Igor Sysoev | 4 | -18/+12 | |
A pid file name can be relative. The default pid file name is "nginext.pid". | |||||
2017-08-26 | Added configure options --prefix=PATH and --log=FILE. | Igor Sysoev | 4 | -15/+28 | |
A prefix is prepended to all relative names at configure stage. There is no prefix by default. A log file name can be relative. The default log file name is "nginext.log". | |||||
2017-08-26 | Introduced nxt_socket_defer_accept(). | Igor Sysoev | 4 | -13/+25 | |
2017-08-26 | Removed unused function. | Igor Sysoev | 2 | -70/+0 | |
2017-08-25 | Fixed typedef nxt_port_mmap_msg_t redefinition after 1b394e999c7c. | Sergey Kandaurov | 1 | -1/+0 | |
Redefinition of typedef is a C11 feature. On older compilers that default to C99, such as clang 3.4.1 supplied with FreeBSD 10, this caused -Wtypedef-redefinition warnings. | |||||
2017-08-24 | Fixed building by GCC after 924c70e5fd1f. | Valentin Bartenev | 1 | -1/+1 | |
2017-08-24 | Renamed configure option --no-unix-domain to --no-unix-sockets. | Igor Sysoev | 1 | -1/+1 | |
2017-08-24 | Building IPv6 by default. | Igor Sysoev | 1 | -3/+2 | |
2017-08-24 | Removed configure option --no-threads. | Igor Sysoev | 21 | -305/+18 | |
2017-08-24 | Checking invalid command line options. | Igor Sysoev | 1 | -1/+8 | |
2017-08-24 | Added command line option --version. | Igor Sysoev | 3 | -6/+19 | |
2017-08-24 | Removed command line option --workers. | Igor Sysoev | 2 | -24/+0 | |
2017-08-24 | Renamed command line option --no-daemonize to --no-daemon. | Igor Sysoev | 1 | -1/+1 | |
2017-08-22 | Removed unused structure. | Valentin Bartenev | 1 | -4/+0 | |
2017-08-21 | Renamed configure options. | Valentin Bartenev | 1 | -16/+16 | |
2017-08-17 | The new module configuration interface. | Igor Sysoev | 29 | -472/+1374 | |
Configuration and building example: ./configure ./configure python ./configure php ./configure go make all or ./configure make nginext ./configure python make python ./configure php make php ./configure go make go Modules configuration options and building examples: ./configure python --module=python2 --config=python2.7-config make python2 ./configure php --module=php7 --config=php7.0-config --lib-path=/usr/local/php7.0 make php7 ./configure go --go=go1.6 --go-path=${HOME}/go1.6 make go1.6 | |||||
2017-08-17 | Removing auto/modules directory before commiting the new module | Igor Sysoev | 7 | -300/+0 | |
configuration infrastructure. | |||||
2017-08-16 | Introduced nxt_conf_get_array_element(). | Valentin Bartenev | 2 | -0/+21 | |
2017-08-16 | Object mapping interface extended with more string types. | Valentin Bartenev | 4 | -15/+52 | |
2017-08-16 | Renamed nxt_str_copy() to nxt_str_cstrz(). | Valentin Bartenev | 2 | -3/+3 | |
2017-08-16 | Corrected path to nxt_socket.h in comments. | Ruslan Ermilov | 3 | -5/+5 | |
2017-08-15 | Fixed building on ppc. | Valentin Bartenev | 1 | -1/+1 | |
2017-08-13 | Fixed building by GCC after 7d1017bd0f6c. | Valentin Bartenev | 1 | -1/+1 | |
2017-08-11 | Controller: more HTTP headers and detailed JSON parsing errors. | Valentin Bartenev | 5 | -158/+576 | |
2017-08-11 | Fixed parsing of JSON encoded UTF-16 surrogate pairs. | Valentin Bartenev | 1 | -16/+13 | |
2017-08-11 | Request body read state implemented. | Max Romanov | 15 | -254/+610 | |
With specific timeout and buffer size settings. | |||||
2017-08-11 | Sync flag introduced for port type. | Max Romanov | 2 | -4/+12 | |
To avoid transfer mmap_msg before new mmap message. | |||||
2017-08-11 | RPC: peer pid special value -1 may be used if pid is unknown. | Max Romanov | 1 | -36/+43 | |
2017-08-11 | Tiny mmap buffers completion fixed. | Max Romanov | 3 | -4/+5 | |
Small mmap buffers transferred in 'plain' mode and should be freed by sender. | |||||
2017-08-08 | Fixed JSON escape sequence parsing. | Valentin Bartenev | 1 | -2/+4 | |
2017-08-04 | Fixed building without debug after c1ae75b4e17c and 6281674ecf4f. | Valentin Bartenev | 2 | -11/+4 | |
2017-08-04 | Introducing configure option --with-php-ldflags=. | Igor Sysoev | 2 | -8/+13 | |
2017-08-04 | Fixed building by GCC. | Igor Sysoev | 1 | -1/+1 | |
2017-08-02 | Listening socket creation and binding operations are passed | Igor Sysoev | 5 | -63/+406 | |
to the master process. | |||||
2017-08-02 | Added basic port error handler. | Max Romanov | 8 | -40/+81 | |