13:46 25-9-2013: nginx 1.5.6.3 Alice Based on nginx 1.5.6 (25-9-2013) with; + Bug fixes in lua-nginx-module(master 25-9-2013) and ngx_devel_kit(master 25-9-2013) by agentzh + Both debug and non-debug versions, the non-debug version is production use ready ! * vcredist_x86 is required, get it here (http://www.microsoft.com/en-us/download/details.aspx?id=5555) * Additional specifications areby itpp2012 - Nginx Mailing List - English
Lua compiled in! Transforming nginx for Windows: http://forum.nginx.org/read.php?2,242426 https://groups.google.com/forum/#!forum/openresty-en (Lua nginx compiled for nginx windows) Builds can be found here: http://nginx-win.ecsds.eu/ 10:37 23-9-2013: nginx 1.5.6.1 Alice Based on nginx 1.5.6 (22-9-2013) with; + Streaming with nginx-rtmp-module, v1.0.4 (http://nginx-rtmp.blogspby itpp2012 - Nginx Mailing List - English
nginxorg Wrote: ------------------------------------------------------- > Just checking if you have any patches against nginx-1.4 or nginx-1.5 > to share? > > Thanks! When the outstanding issues have been resolved all code will flow back into the community, my target is a Windows nginx version that can compile, perform and scale the same as the linux version. I've just setup aby itpp2012 - Nginx Mailing List - English
10:27 10-9-2013: B02 build Based on nginx 1.4.2 with; pcre-8.32 zlib-1.2.8 openssl-1.0.1e + Compiled with: FD_SETSIZE = 16384 (original Windows source files modified) + Now capable to handle C250K ! (with optimization registry file) + Added Windows optimization registry file, check your current values BEFORE setting the new ones + Added debug symbols file (let us know where it wentby itpp2012 - Nginx Mailing List - English
http://www.mono-project.com/FastCGI_Nginxby itpp2012 - New Member Introductions
If you want to test along pushing the max concurrent limit here's my experimental version: nginx 1.4.2 experimental b01.zip http://www.sendspace.com/file/zc4ak8 MD5: 812ea5e77b39a11468291d9cb9b87503 SHA1: a2fb9e89fb272a3b3ee6162667f88e662c591ba6 Got to 20k concurrent connections today, anyone know of a test tool that can go beyond 20k concurrent?by itpp2012 - Nginx Mailing List - English
Found them, tnx, no adjustment needed here, it's dealing with the much larger FD table without problems. Got up to 12k concurrent connections today one worker one cpu at around 40% utilization, can't get beyond that yet due to the test tool not being able to go beyond 12k :) If anyone wants to test as well let me know, I can place the binary (based on 1.4.2) somewhere. Valentin, can you explby itpp2012 - Nginx Mailing List - English
Working on getting real high performance with nginx under windows I am rewriting code and already got around the fd_setsize issue following http://stackoverflow.com/questions/7976388/increasing-limit-of-fd-setsize-and-select/18530636 which is documented as http://support.microsoft.com/kb/111855 I came across an interesting issue (FD_SETSIZE compiled for 8196), when worker_connections is set toby itpp2012 - Nginx Mailing List - English
Please change the POSIX I/O interfaces for the windows version, see: http://bugs.mysql.com/bug.php?id=24509 Which has been fixed 5 years ago! all the code is there.by itpp2012 - Ideas and Feature Requests
set PHP_FCGI_CHILDREN=0 set PHP_FCGI_MAX_REQUESTS=10000by itpp2012 - Nginx Mailing List - English
I think we could all benefit from a nginx recommendation on using gzip with single and dual mode server sections regarding a hardening approach against breach. Maxim?by itpp2012 - Nginx Mailing List - English
Igor Sysoev Wrote: ------------------------------------------------------- > Yes, modern nginx versions do not use SSL compression. [...] > You have to split the dual mode server section into two server server > sections and set "gzip off" > SSL-enabled on. There is no way to disable gzip in dual mode server > section, but if you really > worry about security inby itpp2012 - Nginx Mailing List - English
It should be when root is set properly, when you get " No input file specified" it means php can't find the php file so doc root is pointing to a wrong path, there should be a way to display where root is pointing to so you can find out where its going wrong, also check php.ini for path/openbasedir/docroot values. Or pass a fixed path instead of $document_root.by itpp2012 - How to...
Looks like your root and document_root are not set properly when using fallback.by itpp2012 - How to...
Simply via a cmd file: rem Attempt to abort cleanly nginx -s stop rem stop the service that started it net stop "NGinxWS" rem Send a kill just in case pv -kf nginx*by itpp2012 - How to...
Why the file won't show, no idea, but here's an alternative link to the attachment: http://imagebin.ca/qpQhhYjvVzZ/ngphp.jpgby itpp2012 - How to...
I prefer to use pv.exe to kill the processes, always works, why port 80 remains open could be taskman specific as there are minimal 2 nginx processes. I do consider this a nginx bug, but the windows version seems to be a development lower then low priority.by itpp2012 - How to...
See attachment, nginx 1.4.2 with worker_connections limit removed, geo-pooled php 5.4.17 nts, xcache 3.0.3, each process runs under a very restricted unique user, keeps on running for weeks without needing a restart, easily handling 10k+ sessions.by itpp2012 - How to...
Try sendfile off;by itpp2012 - How to...
You have to kill the process with taskkill or pv.exe from prcview tools.by itpp2012 - How to...
Never seen this happen, using 1.4.2, even with the 1.2 branch memory use remained stable, don't use more then 1 worker.by itpp2012 - How to...
There are always security issues when running any process as root, the point is to run them as a restricted user, php can run as a permanent process that processes calls without having to restart or exit using a socket or tcp port. If you need more then one php process create a pool as round robin or assigned as geographic ip pool.by itpp2012 - Php-fpm Mailing List - English
locojohn Wrote: ------------------------------------------------------- > itpp2012 Wrote: > ------------------------------------------------------- > > open_basedir should be set in php.ini and not be passed via nginx. > open_basedir can be passed via nginx without problem, bad advice. In a hardened environment you always have limited, separated nginx and php processes, therby itpp2012 - Php-fpm Mailing List - English
> fastcgi proxy mod. What the hell will stop other local users from > connecting to 127.0.0.1:9999 and passing their own code to handler > that is running as other system user? That seems totaly not secure in shared > enviroment. Am I missing something or what? The point your missing is 'shared environment', weather this is cli php where requests are passed or a tcp port makesby itpp2012 - Php-fpm Mailing List - English
Hello Maxim, Can you tell us the status with the branches ? Is 1.3 now the new stable ? (what is then the status of 1.2 ?) Is 1.4 development ? Should all 1.2 users upgrade to 1.3 ?by itpp2012 - Nginx Mailing List - English
http://stackoverflow.com/questions/13661406/deny-access-to-a-php-file-nginxby itpp2012 - How to...
open_basedir should be set in php.ini and not be passed via nginx. ea. open_basedir = /webroot/www.testsite123.nl doc_root = /webroot/www.testsite123.nlby itpp2012 - Php-fpm Mailing List - English
Which is why you also need something like: disable_functions = "curl_exec,curl_multi_exec,dl,exec,parse_ini_file,passthru,popen,proc_open,proc_close,shell_exec,show_source,symlink,system" For each host.by itpp2012 - How to...
Use the windows build in the download area which has ssl support build in.by itpp2012 - How to...
Look at your php.ini file and use for example this: open_basedir = /webroot/ww.name.nl doc_root = /webroot/ww.name.nlby itpp2012 - How to...