10up/elasticpress-autosuggest

Name: elasticpress-autosuggest

Owner: 10up

Description: DEPRECATED - Functionality merged into core ElasticPress plugin

Created: 2015-01-02 17:17:25.0

Updated: 2017-12-10 18:50:44.0

Pushed: 2017-08-22 03:26:11.0

Homepage:

Size: 43

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

ElasticPress Autosuggest

Warning: This plugin exposes your Elasticsearch publically. If not properly secured and used in conjunction with the Protected Content function, private content can be leaked publically.

Extend ElasticPress's search inputs to display search suggestions

Setup

You need to add an endpoint to your nginx config, that forwards requests for /es-search to your Elasticsearch host. Here is an example server block with the required location block:

er {
listen       80;

server_name  example.com;

# Elasticsearch endpoint
location /es-search {

    # only allow things to hit the _autosuggest API
    # change the `_endpoint` to be whatever you'd like to restrict usage to
    location ~* (.*)_suggest$ {

        # only allow POST requests
        limit_except POST {
            deny all;
        }

        # Perform our request
        rewrite ^/es-search(.*) $1 break;
        proxy_set_header Host $host;

        # Use the URL of the server here
        proxy_pass http://192.168.50.4:9200;
    }

    return 403;
}

root         /srv/www/example.com;

include      /etc/nginx/nginx-wp-common.conf;

Issues

If you identify any errors or have an idea for improving the plugin, please open an issue. We're excited to see what the community thinks of this project, and we would love your input!


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.