iconv: NGINX iconv module
Debian/Ubuntu installation
These docs apply to the APT package nginx-module-iconv provided by the GetPageSpeed Extras repository.
- Configure the APT repository as described in APT repository setup.
- Install the module:
sudo apt-get update
sudo apt-get install nginx-module-iconv
Show suites and architectures
| Distro | Suite | Component | Architectures |
|----------|-------------------|-------------|-----------------|
| debian | bookworm | main | amd64, arm64 |
| debian | bookworm-mainline | main | amd64, arm64 |
| debian | trixie | main | amd64, arm64 |
| debian | trixie-mainline | main | amd64, arm64 |
| ubuntu | focal | main | amd64, arm64 |
| ubuntu | focal-mainline | main | amd64, arm64 |
| ubuntu | jammy | main | amd64, arm64 |
| ubuntu | jammy-mainline | main | amd64, arm64 |
| ubuntu | noble | main | amd64, arm64 |
| ubuntu | noble-mainline | main | amd64, arm64 |
Name
iconv-nginx-module
Description
This is a nginx module that uses libiconv to convert characters of different encoding. It brings the 'set_iconv' command to nginx.
This module depends on the ngx_devel_kit(NDK) module.
Usage
set_iconv
syntax: set_iconv <destination_variable> <from_variable> from=<from_encoding> to=<to_encoding>
default: none
phase: rewrite
iconv_buffer_size
syntax: iconv_buffer_size <size>
default: iconv_buffer_size <pagesize>
iconv_filter
syntax: iconv_filter from=<from_encoding> to=<to_encoding>
default: none
phase: output-filter
Here is a basic example:
#nginx.conf
location /foo {
set $src '你好'; #in UTF-8
set_iconv $dst $src from=utf8 to=gbk; #now $dst holds 你好 in GBK
}
#everything generated from /foo will be converted from utf8 to gbk
location /bar {
iconv_filter from=utf-8 to=gbk;
iconv_buffer_size 1k;
#content handler here
}
Changelog
This module's change logs are part of the OpenResty bundle's change logs. Please see See http://openresty.org/#Changes
See Also
- The OpenResty bundle.