2

我对域使用这样的 Nginx 配置:

server_name_in_redirect off; 
listen 80;
server_name  ~^(www\.)?(.+)$;
root /var/www/$2/htdocs;

location / {
    try_files  $uri  $uri/ $uri/index.htm  @django;
    index index.html index.htm;
}

location @django {
    fastcgi_pass 127.0.0.1:8801;
    fastcgi_param PATH_INFO $fastcgi_script_name;
    fastcgi_param REQUEST_METHOD $request_method;
    fastcgi_param QUERY_STRING $query_string;
    fastcgi_param SERVER_NAME $server_name;
    fastcgi_param SERVER_PORT $server_port;
    fastcgi_param SERVER_PROTOCOL $server_protocol;
    fastcgi_param CONTENT_TYPE $content_type;
    fastcgi_param CONTENT_LENGTH $content_length;
    fastcgi_pass_header Authorization;
    fastcgi_intercept_errors off;
    fastcgi_param REMOTE_ADDR $remote_addr;
}

Django URL 配置:

urlpatterns = patterns('',   
    url(r'^$', home, name='home'),
    url(r'index.htm', home, name='home'),    
    url(r'^(?P<name>.*).htm$', plain_page, name="plain_page"),
}

所有像http://domain.com/somepage.htm这样的url 都很好,除了http://domain.com/它总是由 Nginx 显示 403。

如果您将静态 index.htm 文件添加到站点根目录 - 它是由于 try_files 指令而打开的

如果您没有静态 index.htm,但调用http://domain.com/index.htm页面由 django 打开

如果你没有静态 index.htm 并打开http://domain.com/你没有页面,但是应该查看 index.htm 并将其作为 try_files 链中的最后一个传递给 django。

在这种情况下如何使http://domain.com/工作(应该调用 django 的 index.htm)?

4

2 回答 2

4

添加这个

location = / { rewrite ^(.*)$ /index.htm last; }

root在该行下方,在进一步处理之前重写URI。

PS。自从您提出要求以来,您可能已经在这一年中解决了这个问题,但这里是给其他人看的。

于 2010-09-06T13:13:59.607 回答
0

更好的解决方案是您在 urls.py 中提供 / url 是删除

 root /var/www/$2/htdocs;

然后只在您提供静态资产的 location {} 块中包含根。

于 2013-01-31T23:27:08.143 回答