ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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



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



 




Copyright © Lexa Software, 1996-2009.