set charset

XIT xolodit at gmail.com
Mon Dec 23 14:03:01 UTC 2013


Доброго времени.

nginx/1.4.3, конфигурация nginx: http://pastebin.com/sQ4CXK0m, установолен
из репов убунты сервера.

Задача отдавать контент в нужной кодировке: utf-8. Добавил charset utf-8;,
но соответствующего заголовка, как описано в документации
http://nginx.org/ru/docs/http/ngx_http_charset_module.html#charset, не
появляется.

Сам текст в отдаваемом index.php на кириллице:
$ file index.php
index.php: HTML document, UTF-8 Unicode text


Конфиг сайта:
server {
listen   80;

  charset utf-8;

        root /home/user/www/site1;
        index index.php index.html index.htm;

       server_name site1;


       location / {
               try_files $uri $uri/ /index.html;
     }

       error_page 404 /404.html;

      error_page 500 502 503 504 /50x.html;
      location = /50x.html {
         root /usr/share/nginx/www;
      }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
      location ~ \.php$ {
            try_files $uri =404;
         fastcgi_pass unix:/var/run/php5-fpm.sock;
         fastcgi_index index.php;
         fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
         include fastcgi_params;

        }
}



Заранее спасибо за любую подсказку.


-- 
Relax, take it easy!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx-ru/attachments/20131223/d83e9b50/attachment.html>


Подробная информация о списке рассылки nginx-ru