Re: remove some parameters from $args

2013-10-06 Thread lahiru
Works like a charm. Thank you very much Yichun. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,243462,243472#msg-243472 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx config: different projects in different directories

2013-10-06 Thread Jabba Laci
> Maybe try setting location /hello and /world would help? I tried that but it didn't work. Laszlo ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx config: different projects in different directories

2013-10-06 Thread Ruben LZ Tan
Maybe try setting location /hello and /world would help? Thanks, Ruben Tan On Monday, October 7, 2013 at 1:27 PM, Jabba Laci wrote: > Hi, > > I'm new to the list. I started to learn the Python web framework Flask > and I would like to try it in production environment too. I managed to > bring

nginx config: different projects in different directories

2013-10-06 Thread Jabba Laci
Hi, I'm new to the list. I started to learn the Python web framework Flask and I would like to try it in production environment too. I managed to bring Flask together with uwsgi and nginx. My Flask application is available at the address localhost:81 . I would like to add several applications and

[ANNOUNCE]ngx_small_light

2013-10-06 Thread cubicdaiya
Hello, folks! I have decided to announce abount ngx_small_light here. ngx_small_light is the extension module for converting image dynamically like NginxImageFilter. ngx_small_light supports following features. * Supports following image-processing * Resize * Rotate * Sharpen, Unsharpen

Re: nginx reverse proxy odd 301 redirect

2013-10-06 Thread izghitu
Hi, The problem was hostname related. Thanks for your help > incorrect configuration of server{} blocks and/or wrong hostname > used in request. > Posted at Nginx Forum: http://forum.nginx.org/read.php?2,243458,243466#msg-243466 ___ nginx mailing l

Doubt regarding Windows 7, MP4 module and HTML5.

2013-10-06 Thread sandrex
Hello, I've runned nginx under Win7 and MP4 videos embed with HTML5 and BubblesJS due to compatibility issues with SRT subtitles. I'd like to know how to enable ngx_http_mp4_module using Windows (I've just found out in Linux). Thanks. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,24

Re: remove some parameters from $args

2013-10-06 Thread Yichun Zhang (agentzh)
Hello! On Sun, Oct 6, 2013 at 3:59 AM, lahiru wrote: > Hello, >I'm using memcached + srcache. I need to modify the $args and > take it as the cache key. > Easy if you're using the ngx_lua module at the same time. Below is a minimal example that demonstrates this: location = /t {

remove some parameters from $args

2013-10-06 Thread lahiru
Hello, I'm using memcached + srcache. I need to modify the $args and take it as the cache key. For example; RT=62&SID=BC3781C3-2E02-4A11-89CF-34E5CFE8B0EF&UID=44332&L=EN&M=1&H=1&UNC=0&SRC=LK I need to convert above $args string to below by removing parameters SID and UID. RT=62&L=EN

Re: nginx reverse proxy odd 301 redirect

2013-10-06 Thread Maxim Dounin
Hello! On Sat, Oct 05, 2013 at 06:16:24PM -0400, izghitu wrote: > Hi, > > I have latest nginx which I am using as a reverse proxy for an application > of mine running on apache on another server. The nginx config is like this: > upstream upstreamname { > server ip:port; > } > > > >