2017-10-14 13:02:48 +02:00
|
|
|
.. _configuration_options_connection:
|
|
|
|
|
|
|
|
Connections
|
|
|
|
===========
|
|
|
|
|
|
|
|
Holds settings regarding the different possible connections for search services like Elasticsearch
|
2018-03-08 08:17:41 +01:00
|
|
|
or Algolia.
|
2017-10-14 13:02:48 +02:00
|
|
|
|
|
|
|
Configured as::
|
|
|
|
|
|
|
|
plugin {
|
|
|
|
tx_searchcore {
|
|
|
|
settings {
|
|
|
|
connections {
|
|
|
|
connectionName {
|
|
|
|
// the settings
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Where ``connectionName`` is one of the available :ref:`connections`.
|
|
|
|
|
2018-03-08 08:17:41 +01:00
|
|
|
The following settings are available.
|
2017-10-14 13:02:48 +02:00
|
|
|
|
|
|
|
.. _host:
|
|
|
|
|
|
|
|
``host``
|
|
|
|
--------
|
|
|
|
|
2017-10-29 12:25:25 +01:00
|
|
|
The host, e.g. ``localhost`` or an IP where the search service is reachable from TYPO3
|
|
|
|
installation.
|
2017-10-14 13:02:48 +02:00
|
|
|
|
2017-10-29 12:25:25 +01:00
|
|
|
Example::
|
2017-10-14 13:02:48 +02:00
|
|
|
|
2017-10-29 12:25:25 +01:00
|
|
|
plugin.tx_searchcore.settings.connections.elasticsearch.host = localhost
|
2017-10-14 13:02:48 +02:00
|
|
|
|
|
|
|
.. _port:
|
|
|
|
|
|
|
|
``port``
|
|
|
|
--------
|
|
|
|
|
2017-10-29 12:25:25 +01:00
|
|
|
The port where search service is reachable. E.g. default ``9200`` for Elasticsearch.
|
2017-10-14 13:02:48 +02:00
|
|
|
|
2017-10-29 12:25:25 +01:00
|
|
|
Example::
|
2017-10-14 13:02:48 +02:00
|
|
|
|
2017-10-29 12:25:25 +01:00
|
|
|
plugin.tx_searchcore.settings.connections.elasticsearch.port = 9200
|