Двойные заголовки

Igor Sysoev is at rambler-co.ru
Wed Aug 8 18:31:15 MSD 2007


On Wed, Aug 08, 2007 at 06:09:25PM +0400, Монашёв Михаил wrote:

> Вдогонку...
> 
> конфиг, который генерит двойные заголовки:
> 
>         server {
>                 listen хххххх;
> 
>                 server_name ххххх;
> 
>                 location /i/ {
>                         root            ххххххх;
>                         expires         30d;
>                         charset         windows-1251;
>                 }
> 
>                 location  /path-to-cache/ {
>                     internal;
>                     add_header  Content-Type    text/html;
>                     charset     ISO-8859-1;
>                     root        хххххххх;
>                 }
> 
>                 location / {
>                         access_log /opt/log/nginx/access.log main;
>                         proxy_pass  ххххх;
>                 }
>         }
> 
> 
> Если убрать строчки:
>                     add_header  Content-Type    text/html;
>                     charset     ISO-8859-1;
> 
> то двойной заголовок пропадает.

А зачем эти строчки ? Workaround такой:

       location /path-to-cache/ {
           types  { }
           default_type  text/html;
           charset     ISO-8859-1;
           ...


-- 
Игорь Сысоев
http://sysoev.ru





More information about the nginx-ru mailing list