我需要 nginx 为某个目录请求提供某个位置的服务,例如:
localhost/this_site
服务
/path/to/this_site
我怎样才能让它工作?
答案1
你想要的位置(这篇文章关于nginx、django 和 gunicorn有很好的介绍)。
server {
... your server code here ...
location /this_site/ {
root /path/to/this_site;
}
}
应该做你想做的事。