[FORUM] How to... - nginx config to serve static files
Nginx Forum
forum.nginx.org at gmail.com
Sat Mar 14 12:57:39 MSK 2009
>From "nginx config to serve static files" at http://forum.nginx.org/showthread.php?t=11
***************
---Quote (Originally by jpartogi)---
Hi guys.
Thanks for replying. I'm almost there now. Now I can access the directory, but when I access the file I get 404 again, while the file already exists on that directory. Is there anything I need to setup?
Thanks in advance
---End Quote---
Okay done with it. :-) Instead of using the about configuration, I just use wildcards for every static files as stated in the docs as such:
Code:
---------
# serve static files
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
root /var/www/virtual/big.server.com/htdocs;
expires 30d;
}
---------
***************
Posted by jpartogi
More information about the nginx
mailing list