1

我正在使用 Django + Apache 和 Nginx 构建一个网站来提供我的静态内容。我的网站索引不需要任何后端 Django 编码,所以我需要在 nginx.conf 中进行哪些更改才能将 location / { } 的请求发送到我的静态内容中的某个 index.html,同时仍然允许我的 urls.py 处理适当的模式?

upstream backend {
   server 127.0.0.1:8080;
}

server {
   listen       192.168.1.20:80;
   server_name  www.example.com example.com;

   access_log   /home/userxyz/public_html/example.com/logs/nginx_access.log;
   error_log    /home/userxyz/public_html/example.com/logs/nginx_error.log;

   location / 
   {
      proxy_pass   http://127.0.0.1:8080;
      include      /etc/nginx/proxy.conf;
   }

   location ~ ^/(system|images|robots\.txt|css|js|favicon\.ico).*$
   {
      root    /home/userxyz/public_html/example.com/static-content/;
   }

   location /media/ 
   {
      root    /home/userxyz/public_html/example.com/;
   }
}
4

2 回答 2

1
location = / {
  root    /home/userxyz/public_html/example.com/static-content/;
}
于 2011-09-18T06:38:05.647 回答
0

怎么样的东西:

location ~ ^/$
{
    root /PATH/TO/index.html;
}

这个想法是给 nginx 一个完全匹配'/'的规则。

于 2009-07-28T23:57:40.790 回答