3

I used rewrite directives below in nginx to rewrite urls of static files to external CDN server.

rewrite ^/static/(css|images|js)/([a-z_\-\.]+)$ http://cdn.domain.com/$1_$2 last;

It works but it redirect the url automatically in browsers.

How can I do the above rewrite without redirects?

jack
  • 1,705
  • 5
  • 21
  • 24

3 Answers3

2

nginx is case sensitive (feature or bug), use HTTP:// instead of http:// for example:

rewrite ^/static/(css|images|js)/([a-z_\-\.]+)$ HTTP://cdn.domain.com/$1_$2 last;

but request will be send to proxy_pass server, and it only works if server in proxy_pass is also web-proxy server, who understands

GET HTTP://cdn.domain.com/ HTTP/1.0
1

You need to change the links inside your application to point to the CDN for static includes.

When you rewrite to an http location there's nothing nginx can do but redirect the browser (since the CDN is outside of nginx, and the browser needs to get the files from the CDN). You would have the same issue with Apache or any other URL rewriter, as the CDN is not an "internal" location to the web server.

One option might be the nginx subsitution module, which can replace content as it is delivered. But that doesn't handle regular expressions, and would slow down every request. It is better just to change your application's HTML to reference the CDN URLs directly.

rmalayter
  • 3,744
  • 19
  • 27
0

If you want to hide URL of external CDN server you must find CDN with aliases support. Then point your subdomain (cdn.yourdomain.com) to CDN.

  • This answer is offtopic , he is asking how to server Static content from CDN. He wants to re-write URL of static files to that of CDN – BigSack Aug 16 '13 at 17:56