insensitive accent

(from github.com/rafael844)
Could someome lead me in how to use the asciifolding filter to make accent insensitive? like a search for “nao” and “não”. Where and how should it configure it??
Im trying to figure it, but im starting with elasticsearch.

Thanks.

(from github.com/marevol)
If you use Fess 13.3, the step is:

  1. Download fess.json at Backup page
  2. Add asciifoloding into standard_analyzer in fess.json
        "standard_analyzer": {
          "type": "custom",
          "char_filter": [
            "mapping_filter"
          ],
          "tokenizer": "unigram_tokenizer",
          "filter": [
            "disable_graph",
            "asciifolding",
            "alphanum_word_filter",
  1. Upload fess.json at Backup page
  2. Start reindexing at Maintenance page

(from github.com/rafael844)
Perfect. Thanks.