HowTo: Nginx Webserver Send Charset utf-8 Under Unix

by on November 5, 2012 · 0 comments· LAST UPDATED November 11, 2012

in

I was told that to improve resource download parallelization in IE8 I need to send the character set to the HTTP Content-Type response header. How do I set charset utf-8 under nginx web server running on Unix like operating systems?

Tutorial details
DifficultyEasy (rss)
Root privilegesYes
RequirementsNginx
Estimated completion timeN/A

You need to use the ngx_http_charset_module. This module provides the specified charset to the "Content-Type" response header field. You can view such header using nothting but standard wget or curl command:


curl -I http://example.com

OR


wget --server-response -O /dev/null http://example.com

How do I enable charset HTTP-header in Nginx?

Open your nginx.conf, enter:
# vi nginx.conf
Append/modify the following directive in http, server, or location:

 
charset UTF-8;
 

Save and close the file. Reload the nginx web server, enter:
# /usr/local/nginx/sbin/nginx -s reload

How do I test charset HTTP-header?

Type the following command:
$ wget --server-response -O /dev/null http://www.cyberciti.biz
OR
$ curl -I http://www.cyberciti.biz
Sample outputs:

HTTP/1.1 200 OK
Server: nginx
Date: Mon, 05 Nov 2012 16:42:51 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
X-Whom: l2-com-cyber
Vary: Cookie
Last-Modified: Mon, 05 Nov 2012 16:38:02 GMT
Cache-Control: max-age=311, must-revalidate
X-Galaxy: Andromeda-1
X-Origin-Type: DynamicViaDAL


If you would like to be kept up to date with our posts, you can follow us on Twitter, Facebook, Google+, or even by subscribing to our RSS Feed.


{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , ,

Previous Faq:

Next Faq: