localhost load super fast. Moving your site online may reveal
unexpected delays. For example, you have a page with a bunch of
rotating images. How will you page react if an image takes 10 seconds
to load? Are you going to have a blank area for 10 seconds?
Here's a small nginx trick to add a delay (sleep) to a resource:
location /subrequest {
alias /srv/www/static/cat.jpg;
}
location /static/cat.jpg {
echo_sleep 3.0;
echo_location /subrequest;
}