Re: Wordpress RSS pages dont work with Nginx

2013-04-28 Thread Sylvia
Hi. Are you using Wp-Super-Cache or similar plugin? Check either - 1) disable caching for is_feed 2) Don’t cache pages with GET parameters. (?x=y at the end of a url) Posted at Nginx Forum: http://forum.nginx.org/read.php?2,238692,238695#msg-238695 __

load balancing according to url

2013-04-28 Thread ESWAR RAO
Hi All, Can anyone please help me with the below requirement. Host machine contains a plugin and it communicates with a plugin handler running on backend servers and nginx is used to load balance the requests. host machine(plugin) = >nginx as load balancer =>3 backend servers which hosts

Nginx security issue?

2013-04-28 Thread Stefanita Rares Dumitrescu
Hi guys This was posted today: http://blog.solidshellsecurity.com/2013/04/29/nginx-ngx_http_close_connection-function-integer-overflow-exploit-patch/?utm_source=feedly Has this been patched? I don't think i found anything about it in the changelogs ___

Wordpress RSS pages dont work with Nginx

2013-04-28 Thread rahmanusta
I had a wordpress blog and was working on Apache. I migrated the blog to Nginx + php-fpm. But i have a problem with this. My blog has RSS with example.com/feed URL , and i could see the feeds with paged like this example -> http://www.kodcu.com/feed/?paged=45. But in Nginx, this paged RSS urls do

Re: Get request_body in set_by_lua directive

2013-04-28 Thread agentzh
Hello! On Sun, Apr 28, 2013 at 12:13 PM, maanas wrote: > Thanks it help me as well. I was trying to read request post body in > set_by_lua directive > No, the request body is not read yet at the phase where set_by_lua (and those ngx_rewrite directives) runs. Try using the rewrite_by_lua directive

Re: Get request_body in set_by_lua directive

2013-04-28 Thread maanas
Thanks it help me as well. I was trying to read request post body in set_by_lua directive Posted at Nginx Forum: http://forum.nginx.org/read.php?2,223876,238690#msg-238690 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo

Re: nginx Digest, Vol 42, Issue 54

2013-04-28 Thread Simon Templar
unsubscribe On 4/28/13 8:00 AM, nginx-requ...@nginx.org wrote: Send nginx mailing list submissions to nginx@nginx.org To subscribe or unsubscribe via the World Wide Web, visit http://mailman.nginx.org/mailman/listinfo/nginx or, via email, send a message with subject or body 'help

Re: basic_auth for parts of uwsgi

2013-04-28 Thread Francis Daly
On Sun, Apr 28, 2013 at 01:05:37PM +0200, Christoph Egger wrote: Hi there, > I'm running a uwsgi application using nginx on /. I would like to add > authentication for /foo/ and /bar/. One request is handled in one location. In the one location that handles the request "/foo/something", you wan

basic_auth for parts of uwsgi

2013-04-28 Thread Christoph Egger
Hi! I have the following problem: I'm running a uwsgi application using nginx on /. I would like to add authentication for /foo/ and /bar/. However neither > location / { > include uwsgi_params; > uwsgi_pass unix:/run/uwsgi/app/something/socket; > } > > location /foo/ { > auth_basic "LOGIN