Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-06 Thread B.R.
I have little knowledge about Windows, but I know that the SYSTEM account is usually related to processes running as services. SYSTEM has restricted rights on number of things, despite appearing as a 'super-account', an attempt from Windows to mitigate services 'super-powers'. It would not surpris

Re: Do I need nginx in the web application host?

2014-04-06 Thread B.R.
Nginx can proxy HTTP requests to backend through the proxy module directives . If your backend is able to handle those requests on its own (ie if it is able to handle connections without any webserver), then make nginx as a load-balancer di

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-06 Thread c0nw0nk
After doing some more testing there is one way it does not work still. When Nginx runs on windows it runs under your user account. For example my account name is root. So it says nginx is running under the root user. But when i restart the server(local machine) it says nginx is running under the S

Do I need nginx in the web application host?

2014-04-06 Thread josh11
If I have a host witn nginx (load balancing and SSL termination), do i need nginx inside the host of each of my webapps? (Assuming I will use cdn for static assets). Thanks! Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249048,249048#msg-249048 ___

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-06 Thread c0nw0nk
I also did use the Microsoft fix it that you posted itpp2012 so as of what actually fixed it i think it was probably the Microsoft option but i don't need the file cache anyway. Thanks for all the help much appreciated. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249008,249047#msg-2

Re: map v/s rewrite performance

2014-04-06 Thread rahul286
> Exact locations are faster. Thanks again. We will go with exact locations. :-) Posted at Nginx Forum: http://forum.nginx.org/read.php?2,248659,249046#msg-249046 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: map v/s rewrite performance

2014-04-06 Thread Igor Sysoev
On Apr 4, 2014, at 16:05 , rahul286 wrote: > @Igor > > Few Updates: > >> location = old-url-1 { return 301 new-url-1; } > > is really nice. We can specify 301/302 using it. > > But I am reading - > http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_valid > and now I am th