all.
Plese advice, how to correctly set root dir for location.
Now I have incorrect config:
location ~* ^/upload/
{
root /home/site/upload/
}
I want to locate all files from URLs, what are started from /upload/ from directory /home/site/upload/
But Nginx try to locate files from /home/site/upload/upload/ , for example /home/site/upload/upload/1.doc
How to fix my config?