meilisearch/Resources/Private/Templates/Backend/Reports/SolrStatus.html
2021-04-17 00:26:33 +02:00

48 lines
964 B
HTML

<table class="table table-condensed table-hover table-striped">
<thead>
<tr>
<td colspan="2">{header}</td>
</tr>
</thead>
<tr>
<th>Site</th>
<td>{connection.label}</td>
</tr>
<tr>
<th>Scheme</th>
<td>{solr.primaryEndpoint.scheme}</td>
</tr>
<tr>
<th>Host</th>
<td>{solr.primaryEndpoint.host}</td>
</tr>
<tr>
<th>Path</th>
<td>{solr.corePath}</td>
</tr>
<tr>
<th>Port</th>
<td>{solr.primaryEndpoint.port}</td>
</tr>
<tr>
<th>Username</th>
<td>{connection.solrUsername}</td>
</tr>
<tr>
<th>Apache Solr</th>
<td>{solrVersion}</td>
</tr>
<tr>
<th>solrconfig.xml</th>
<td>{configName}</td>
</tr>
<tr>
<th>schema.xml</th>
<td>{schemaName}</td>
</tr>
<tr>
<th>Access Filter Plugin</th>
<td>{accessFilter}</td>
</tr>
</table>