This module parses the Accept-Language header and gives the most suitable locale for the user from a list of supported locales from your website.
set_from_accept_language $lang en ja pl; - `$lang` is the variable in which to store the locale - `en ja pl` are the locales supported by your websiteIf none of the locales from accept_language is available on your website, it sets the variable to the first locale of your website’s supported locales (in this case en)
It currently assumes that the accept-language is sorted by quality values (from my tests it’s the case for safari, firefox, opera and ie) and discards q (see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). In the situation where I’m using the module, this assumption works… but buyer beware :-)
If you have different subdomains for each languages
server {
listen 80;
server_name your_domain.com;
set_from_accept_language $lang en ja zh;
rewrite ^/(.*) http://$lang.your_domain.com redirect;
}
Or you could do something like this, redirecting people coming to ‘/’ to /en (or /pt)
location / {
set_from_accept_language $lang pt en;
if ( $request_uri ~ ^/$ ) {
rewrite ^/$ /$lang redirect;
break;
}
}
I’m using page caching with merb on a multi-lingual website and I needed a way to serve the correct language page from the cache
I’ll soon put an example on http://gom-jabbar.org
Send Bugs to Guillaume Maury (dev@gom-jabbar.org)
Thanks to Evan Miller for his guide on writing nginx modules (http://emiller.info/nginx-modules-guide.html)
Related repos :
-——————
– https://github.com/steamboatid/keydb
– https://github.com/steamboatid/phpredis
– https://github.com/steamboatid/nginx
– https://github.com/steamboatid/lua-resty-core
– https://github.com/steamboatid/lua-resty-lrucache
– https://github.com/steamboatid/ext-http
– https://github.com/steamboatid/nginx_accept_language_module
– https://github.com/steamboatid/apt-mirror
– https://github.com/steamboatid/db4
– https://github.com/steamboatid/sshfs
– https://github.com/steamboatid/libfuse
– https://github.com/steamboatid/libzip
– https://github.com/steamboatid/nutcracker
– https://github.com/steamboatid/dkbuild