serving static content from a sub url?
cjbottaro
nginx-forum at nginx.us
Sat Oct 10 07:19:37 MSD 2009
Hello,
I have a static website on my machine at
/home/me/www/public
I simply want to serve that from a sub url on my domain:
http://www.mydomain.com/mysite
How do I do that?
I tried this but it didn't work...
server {
listen 80;
server_name www.mydomain.com;
location /mysite {
index index.html;
root /home/me/www/public;
}
}
Thanks for the help.
Posted at Nginx Forum: http://forum.nginx.org/read.php?2,12645,12645#msg-12645
More information about the nginx
mailing list