11 messages in ru.sysoev.nginxrewrite for javascript files.. again,...
FromSent OnAttachments
Chris CorteseMar 10, 2009 11:29 am 
Igor SysoevMar 10, 2009 11:41 am 
Chris CorteseMar 10, 2009 1:39 pm 
Chris CorteseMar 10, 2009 6:31 pm 
Anıl ÇetinMar 10, 2009 9:05 pm 
Glen LumanauMar 10, 2009 10:01 pm 
MaxMar 12, 2009 12:52 am 
Chris ZimmermanMar 12, 2009 2:39 am 
Chris ZimmermanMar 12, 2009 2:44 am 
JoeMar 13, 2009 1:33 pm 
Anıl ÇetinMar 13, 2009 4:59 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:rewrite for javascript files.. again, fire on live siteActions...
From:Chris Cortese (cort@gmail.com)
Date:Mar 10, 2009 11:29:19 am
List:ru.sysoev.nginx

Hello,

Somehow my rewrite for Javascript got broken again. I've tried every possible combination of things I can think of. What I need is:

orig URL: http://mysite.com/javascript/fileA.js,fileB.js,fileC.js

...becomes...

dest URL: http://mysite.com/combine.php?type=javascript&files=fileAjs.,fileB.js,fileC.js

So this is the latest variation I've tried, with the new nginx 0.7.40:

location ^/javascript/(.*)$ { fastcgi_pass 127.0.0.1:10005; fastcgi_param SCRIPT_FILENAME /home/fugbert/www/live/escort-space/trunk/html/public/combine.php?type=javascript&files=$1; fastcgi_param QUERY_STRING q=$request_uri; include /etc/nginx/fastcgi_params; }

** in fastcgi_params, I have the defaults except I commented out QUERY_STRING line.

The error I'm getting is undefined index "type" which tells me that the $_GET array is not available to combine.php.

This is hurting a live site.

Thanks in advance for your help, Chris