Added _mapping proxy settings

This commit is contained in:
Rashid Khan 2013-08-16 12:45:38 -07:00
parent 93b48a7d29
commit 02f2ff29f1
2 changed files with 5 additions and 1 deletions

View File

@ -31,7 +31,7 @@
</Proxy>
# Proxy for _aliases and .*/_search
<LocationMatch "^(/_aliases|.*/_search)$">
<LocationMatch "^(/_aliases|.*/_search|.*/_mapping)$">
ProxyPassMatch http://127.0.0.1:9200
ProxyPassReverse http://127.0.0.1:9200
</LocationMatch>

View File

@ -29,6 +29,10 @@ server {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
location ~ ^/.*/_mapping$ {
proxy_pass http://127.0.0.1:9200;
proxy_read_timeout 90;
}
# Password protected end points
location ~ ^/kibana-int/dashboard/.*$ {