Windows 1024 Connections Limit

2017-04-11 Thread Igal @ Lucee.org
Is there a technical reason for the 1,024 Connections Limit on Windows? http://nginx.org/en/docs/windows.html#known_issues Surely the OS can handle many more connections than that. This is not much of an issue with regular requests, but when you use WebSockets you can run out of connections ve

Re: Mechanism to avoid restarting nginx upon every change

2017-04-11 Thread Ajay Garg
On Mon, Apr 10, 2017 at 1:04 PM, B.R. via nginx wrote: > You could have got your answer yourself by Reading The... Fine? Manual: > https://nginx.org/en/docs/control.html > > There are tons of interesting pieces of informations there, by the nature > of said docs... > ​I suggest you take a look at

nginx.conf 2017: Call For Papers Now Open – Submit a Talk!

2017-04-11 Thread Shirley Bailes
Hello NGINX community – We’re excited to announce that the call for proposals for the fourth NGINX conference, nginx.conf 2017 is open. Please submit a talk, and share the CFP with those you know who have good NGIN

AW: Ticket #196 followup: disallow spaces in uri by default

2017-04-11 Thread Lukas Tribus
> I think the main question here: is it ok to just drop support for > spaces, or we have to introduce some option to preserve the old > behaviour. My opinion: I think we will need the configuration knob, so there is time to fix the problem, as a client bug is not always immediatly fixable. Eith

Re: Ticket #196 followup: disallow spaces in uri by default

2017-04-11 Thread Maxim Dounin
Hello! On Sat, Apr 08, 2017 at 07:26:01PM +, Lukas Tribus wrote: > in Ticket #196 [1], Maxim Dounin suggested that spaces in URI's > could be disallowed by default. > > As far as I can tell, current code still does not "disallow" > those requests (not by default and not via specific > con

Re: [ Module development - Socket ]

2017-04-11 Thread comput3rz
Thanks Maxim ! =) I found what I was looking for. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,273525,273532#msg-273532 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: [ Module development - Socket ]

2017-04-11 Thread Maxim Dounin
Hello! On Tue, Apr 11, 2017 at 04:28:54AM -0400, comput3rz wrote: > Hi, > > I need to develop a module which make a connexion with an external server. I > tried to use simple TCP sockets available > > in the "sys/socket.h" (Linux) library but it appears that it wasn't a good > idea as nothing

Re: Nginx - API Gateway is not forwarding the request to Auth Service

2017-04-11 Thread Francis Daly
On Tue, Apr 11, 2017 at 02:04:32AM -0400, zaidahmd wrote: Hi there, > This means my authentication service will be getting a subrequest to /login > everytime a request reaches nginx. And if the subrequest returns 401 then it > means the user needs to login. I'm not sure what your system design i

Re: Mechanism to avoid restarting nginx upon every change

2017-04-11 Thread B.R. via nginx
I do not know anything about third-party modules. I'll let experts on the lua one answering that one. The baseline is: you should not need to. --- *B. R.* On Mon, Apr 10, 2017 at 11:31 PM, Alex Samad wrote: > But long live sessions are closed and I've had lua session information > persist with a

[ Module development - Socket ]

2017-04-11 Thread comput3rz
Hi, I need to develop a module which make a connexion with an external server. I tried to use simple TCP sockets available in the "sys/socket.h" (Linux) library but it appears that it wasn't a good idea as nothing was working correctly. Then, I searched in the source code keywords like "conne

Re: Nginx - API Gateway is not forwarding the request to Auth Service

2017-04-11 Thread zaidahmd
Hi maxim, After implementing your valuable inputs I came across the following error in my application. Error: "Request 'GET /login' doesn't match 'POST /login" this means that nginx is sending GET requests to authentication service. So the flow is as follows and is according to your valuable f