Cees-Jan

- Post source at 🐙

Serving Static Content from tmpfs with Nginx

One way to speed up WyriMaps.net is to preload popular tiles and nodes to avoid the disk IO build up with a lot of visitors on the map moving around, zooming in and out and adding/removing node sets to the map. Using tmpfs is a simple way to use the RAM as extra cache to speed up your webpages. Tho another way to do that is using memcached wich is more interesting if you have several servers instead of one.

Preparation

First off make sure you have Nginx and tmpfs installed and the following diretories created:

/var/www/static.website.tld/
/mnt/tmpfs/nginx/static.website.tld/

The first contains the files to serve on disk we need them in case we can't find anything n the memory. The seccond is the RAMDisk using tmpfs you mount using the following line in /etc/fstab:

tmpfs                   /mnt/tmpfs/nginx        tmpfs   rw                              0 0

The last thing to prepare is a script that automaticly sets up the directories within the /mnt/tmpfs/nginx mount point. Since everything happens within the RAM of the server it's all lost after a crash/shutdown/reboot.

Configuration The server

Next up is configuring nginx in/etc/nginx/nginx.conf (or somewhere else depending on your distro) to start with error handling every time nginx can't find a file on tmpfs it generates an error even if it finds it later on the disc.

error_log /dev/null crit;

Seccondly within the http { } section we add to allow us to check the RAM first then the disc and then serve a 404 error page/image/something.

recursive_error_pages on;

Aside from these settings it's wise to look into the Gzip and core modules for speeding up the transfer of data and buffering settings.

Configuration The host

Now this is the fun part ;). To start we create the server { } section within the http { } section. We add the following basic settings to make sure it listens on port 80 to the correct host (static.website.tld) and set the expiration to max so we don't keep serving the files:

listen          80;
server_name     static.website.tld;
expires max;

We tell the server to look in the tmpfs mount first and to check the disc after that:

root /mnt/tmpfs/nginx/static.website.tld/;
error_page 404 = @static_website_tld_disc;

By telling nginx to check @static_website_tld_disc after it checked tmpfs and creating a location block we can add another 404 error_page (this is where the error_page nesting comes in we enabled earlier) to serve an error page:

location @static_website_tld_disc {
    root /var/www/static.website.tld/;
    error_page 404 = /404.html;
}

Now nginx first checks the ram for files and after that the disc we have one final block to add so we also serve a neat 404 error page. As final step with add a block that will tell nginx where to find 404.html (note that in the root in the block below there has to be a file named 404.html).

location = /404.html {
    root /mnt/tmpfs/nginx/static.website.tld;
}

As the block shows I'm serving it from RAM and everytime the machine boots a script puts the 404.html file on the tmpfs mount. This results in the following config and keeps WyriMaps.net/WoW fast under high load.

error_log /dev/null crit;
http {
    recursive_error_pages on;
    server {
        listen          80;
        server_name     static.website.tld;
        expires max;
        root /mnt/tmpfs/nginx/static.website.tld/;
        error_page 404 = @static_website_tld_disc;
        location @static_website_tld_disc {
            root /var/www/static.website.tld/;
            error_page 404 = /404.html;
        }
        location = /404.html {
            root /mnt/tmpfs/nginx/static.website.tld;
        }
    }
}

Enjoy :D!

Wyri


Categories: Nginx - Snippets - WyriMaps Tags: memcached - Nginx - RAM - tmpfs - WyriMaps