Revision history  [back]

The following clause in the nginx server configuration will serve uploaded (or other static files):

 location /upfiles/ {   #or other location qualifier
    alias /some/directory/; #adjust to the path where the files are put
    autoindex off;
    expires 30d;
}

Please refer to the nginx documentation.