Instale o Nginx no segundo servidor e configure-o como um servidor de arquivos de cache de proxy estático leve:
server {
open_file_cache_valid 200 20m;
listen 80;
server_name yourcdndomain.com;
access_log /srv/www/yourcdndomain.com/logs/access.log;
root /srv/www/yourcdndomain.com/public_html/;
location ~* \.(jpg|png|gif|jpeg|css|js|mp3|wav|swf|mov|doc|pdf|xls|ppt|docx|pptx|xlsx)$ {
# Cache static-looking files for 120 minutes, setting a 10 day expiry time in the HTTP header,
# whether logged in or not (may be too heavy-handed).
open_file_cache_valid 200 120m;
expires 7776000;
open_file_cache staticfilecache;
}
location = /50x.html {
root /var/www/nginx-default;
}
# No access to .htaccess files.
location ~ /\.ht {
deny all;
}
}
Reescreva seus arquivos estáticos para o novo domínio ou altere os URLs
Editar
Eu alterei o arquivo acima para usar open_file_cache
em vez de proxy_cache