Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-09-22 | Removed fibers from compilation. | Valentin Bartenev | 1 | -2/+0 | |
It's not used anyway, but breaks building with musl. This closes issue #5 on GitHub. | |||||
2017-09-10 | Configuration persistence. | Valentin Bartenev | 3 | -0/+8 | |
Now configuration survives server reloads. | |||||
2017-09-07 | Decalring clean and dist targets as .PHONY. | Max Romanov | 1 | -0/+2 | |
2017-09-06 | Added the dist target in Makefile. | Igor Sysoev | 1 | -0/+11 | |
2017-09-06 | Style fixes. | Igor Sysoev | 1 | -1/+1 | |
2017-09-04 | Fixed permissions for Go sources. | Andrei Belov | 1 | -1/+1 | |
In particular, it resolves a number of errors and warnings reported by rpmlint(1). | |||||
2017-08-31 | Setting build directory with variable instead of configure option. | Igor Sysoev | 1 | -3/+0 | |
2017-08-31 | Introducing install & uninstall Makefile targets. | Max Romanov | 7 | -23/+107 | |
2017-08-31 | Go: fixed splitting recipe line with newer gmake. | Sergey Kandaurov | 1 | -2/+2 | |
Use double quotes to quote a string with the backslash/newline pair. Newer gmake versions, such as GNU Make 4.1, do not remove the backslash from a string quoted with single quotes, which results in an extraneous backslash passed to the shell and, eventually, to the Go compiler. | |||||
2017-08-31 | Changed modules names format. | Igor Sysoev | 2 | -8/+8 | |
2017-08-31 | nginext has been renamed to unit. | Igor Sysoev | 6 | -24/+23 | |
2017-08-31 | Moving generating CGO header file to the make stage. | Igor Sysoev | 1 | -12/+13 | |
2017-08-30 | Lib unit tests have been renamed to tests. | Igor Sysoev | 3 | -39/+34 | |
2017-08-29 | The process type enum exposed to go module. | Max Romanov | 2 | -1/+2 | |
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 | 1 | -2/+2 | |
2017-08-29 | Improved English. | Igor Sysoev | 1 | -7/+7 | |
2017-08-26 | Added configuration summary. | Igor Sysoev | 1 | -0/+23 | |
2017-08-26 | Added configure and command line option --help. | Igor Sysoev | 6 | -40/+92 | |
2017-08-26 | Added configure and command line option --control. | Igor Sysoev | 1 | -0/+10 | |
2017-08-26 | Added configure and command line option --modules. | Igor Sysoev | 1 | -0/+12 | |
2017-08-26 | Added configure option --user=USER and --group=GROUP. | Igor Sysoev | 1 | -0/+6 | |
2017-08-26 | Added configure option --pid=FILE. | Igor Sysoev | 1 | -0/+7 | |
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 | 1 | -0/+17 | |
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-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 | 2 | -24/+9 | |
2017-08-21 | Renamed configure options. | Valentin Bartenev | 1 | -16/+16 | |
2017-08-17 | The new module configuration interface. | Igor Sysoev | 11 | -66/+490 | |
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-04 | Introducing configure option --with-php-ldflags=. | Igor Sysoev | 2 | -8/+13 | |
2017-08-02 | Include build/Makefile into main Makefile. | Max Romanov | 1 | -8/+7 | |
2017-08-02 | Port RPC interface introduced. | Max Romanov | 1 | -0/+1 | |
Usage: 1. Register handlers in incoming port with nxt_port_rpc_register_handler(). 2. Use return value as a stream identifier for next nxt_port_socket_write(). | |||||
2017-08-02 | Added make target 'golang-nginext-install' to install precompiled go package. | Max Romanov | 1 | -0/+20 | |
2017-08-02 | Using old-style packed attribute specification for compatibility. | Max Romanov | 1 | -2/+3 | |
2017-07-26 | Improved PHP configure test. | Igor Sysoev | 1 | -21/+31 | |
2017-07-26 | Improved Python configure test. | Igor Sysoev | 1 | -17/+24 | |
2017-07-26 | Improved Go configure test. | Igor Sysoev | 1 | -7/+10 | |
2017-07-25 | Updated Go configure test. | Igor Sysoev | 1 | -4/+13 | |
2017-07-18 | More accurate "packed" attribute declaration. | Valentin Bartenev | 1 | -0/+15 | |
2017-07-14 | Restored arc4random unit test after 59fc46dd5e1d. | Ruslan Ermilov | 1 | -16/+0 | |
2017-07-05 | Configuration: basic validation of schema. | Valentin Bartenev | 1 | -0/+1 | |
2017-06-28 | Configuration: reduced names of structures, functions, and macros. | Valentin Bartenev | 1 | -1/+1 | |
2017-06-26 | Build on Solaris 11 fixed. | Max Romanov | 1 | -0/+13 | |
2017-06-23 | External Go app request processing. | Max Romanov | 5 | -1/+64 | |
2017-06-23 | PHP app request processing. | Max Romanov | 5 | -0/+80 | |
2017-06-23 | Python app request processing. | Max Romanov | 2 | -17/+13 | |
2017-06-23 | Store pointer to shared memory start in buf->parent. | Max Romanov | 1 | -0/+1 | |
nxt_port_mmap_t stored in arrays and it is unsafe to store pointer to array element. Shared memory structures and macros moved to separate header file to be used by GO package. |