Debugging nginx Load Balancer

Jauder Ho lists at ruby-forum.com
Thu Apr 30 02:32:02 MSD 2009


You need a block that will cause nginx to serve static files directly. 
Something like


    location ~* ^.+\.(css|js)$ {
        root /var/www/foo;
        access_log off;
        expires max;
        break;
    }

-- 
Posted via http://www.ruby-forum.com/.





More information about the nginx mailing list