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
|