Hi, Fabio, > all wiki accounts should have migrated just fine. As a side effect of > the move, the new site should be more responsive than the old one, as > we moved from a CGI setup in the IMPA host to a mod_proxy+Xavante > based setup on the VPS. Please let us know if there are any problems.
Can you share more information about the setup (which VPS, what's the configuration), so that the rest of us could learn from your experience? BTW, you can probably make the site feel even more responsive by either setting expire headers on the CSS, JS and image nodes, or, better yet, by serving those nodes statically. You can do the latter quite easily by saving all icons, CSS files and JS files into a directory (I just do this with wget), and then setting three parameters in sputnik/config. On Sputnik's own website, I have all of those files in a directory called "static": http://spu.tnik.org/static/ This directory has a .htaccess file in it that sets long expiration headers on all files and enables compression on CSS and JS files: <FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|swf)$"> ExpiresDefault "access plus 2 months" </FilesMatch> <FilesMatch "\\.(js|css|html|htm|php|xml)$"> SetOutputFilter DEFLATE </FilesMatch> And then I set parameters in sputnik/config node like this: ICON_BASE_URL = "http://spu.tnik.org/static/" CSS_BASE_URL = "http://spu.tnik.org/static/" JS_BASE_URL = "http://spu.tnik.org/static/" I don't know how much of a difference it would make in terms of response time in your case, but I bet it would get you an A on YSlow. :) - yuri _______________________________________________ Kepler-Project mailing list Kepler-Project@lists.luaforge.net http://lists.luaforge.net/cgi-bin/mailman/listinfo/kepler-project http://www.keplerproject.org/