Replies: 1 comment
-
This is an issue for https://github.com/meilisearch/instant-meilisearch |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi.
Although the indexName value fits perfectly with the idea of meilisearch indexes it is not quite safe. The prepared URL requires opening access directly to http://ms:7700/. It is much safer to prepare the address under a server's reverse proxy that contains only the needed index.
location /movies-index { [...] proxy_pass http://ms:7700/indexes/movies/search/; }
What do you think about the proposal to make the indexName value take the name of the index or the full URL. Or the second option - introduce a new value and one of the two must be required.
Beta Was this translation helpful? Give feedback.
All reactions