I cannot compile the nginx branch 1.6.3 against openssl 1.0.2d. There is compile error: src/http/modules/ngx_http_ssl_module.c: In function 'ngx_http_ssl_alpn_select': src/http/modules/ngx_http_ssl_module.c:351:5: error: 'c' undeclared (first use in this function) src/http/modules/ngx_http_ssl_module.c:351:5: note: each undeclared identifier is reported only once for each function it appearsby krokiki - Other discussion
Hi guys, I am new to nginx source and I need a little assistance about how to implement the following scheme: one nginx process is catching data constantly from a stream (some socket) and puting it to a shared memory (for example), and when there si request for a URI that matches my module to serve what is in the shared memory (and options not to close connection). One program produces data onby krokiki - How to...