---
title: "Site set \"Indexed Search\""
manual: "Indexed Search"
version: "14.3"
permalink: "https://docs.typo3.org/permalink/typo3/cms-indexed-search:site-set@14.3"
source: "Configuration/SiteSet/Index.rst"
rendered: "2026-09-19T11:27:55+00:00"
---

# Site set "Indexed Search" {#site-set}

<!-- TODO: no Markdown rendering for "versionadded" -->

The system extension typo3/cms-indexed-search provides a site
set with default settings.

Include the site set "Indexed Search" via the [site set in the site
configuration](https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ApiOverview/SiteHandling/SiteSets/Index.html#site-sets) or the custom
[site package's site set](https://docs.typo3.org/m/typo3/tutorial-sitepackage/main/en-us/SiteSets/Index.html#site_set).

![](../../Images/SiteSet.png)

This will change your site configuration file as follows:

**config/sites/my-site/config.yaml (diff)**

```diff
  base: 'https://example.com/'
  rootPageId: 1
  dependencies:
    - typo3/fluid-styled-content-css
+   - typo3/indexed-search

```

If your site has a custom [site package](https://docs.typo3.org/m/typo3/tutorial-sitepackage/main/en-us/Index.html#start), you
can also add the "Indexed Search" set as dependency in your site set's configuration:

**EXT:my_site_package/Configuration/Sets/MySite/config.yaml (diff)**

```diff
 name: my-vendor/my-site-package
 label: My Site Package Set
 settings:
   website:
     background:
       color: '#386492'
 dependencies:
   - typo3/fluid-styled-content-css
+  - typo3/indexed-search

```

## Settings of the site set "Indexed Search" {#site-set-settings}

These settings can be adjusted in the [Settings editor](https://docs.typo3.org/permalink/typo3/cms-indexed-search:settings-editor@14.3).

-   **indexedsearch**

    -   *Label:* Indexed Search

    -   **indexedsearch.templates**

        -   *Label:* Templates

        -   **indexedsearch.view.templateRootPath**

            -   *Type:* `string`
            -   *Default:* `"EXT:indexed_search/Resources/Private/Templates/"`
            -   *Label:* Path to template root (FE)
            -   *Category:* Indexed Search > Templates

        -   **indexedsearch.view.partialRootPath**

            -   *Type:* `string`
            -   *Default:* `"EXT:indexed_search/Resources/Private/Partials/"`
            -   *Label:* Path to template partials (FE)
            -   *Category:* Indexed Search > Templates

        -   **indexedsearch.view.layoutRootPath**

            -   *Type:* `string`
            -   *Default:* `"EXT:indexed_search/Resources/Private/Layouts/"`
            -   *Label:* Path to template layouts (FE)
            -   *Category:* Indexed Search > Templates

    -   **indexedsearch.targetPid**

        -   *Type:* `page`
        -   *Default:* `0`
        -   *Label:* Set the target page where search results are shown
        -   *Category:* Indexed Search

    -   **indexedsearch.rootPidList**

        -   *Type:* `string`
        -   *Label:* A list of integer which should be root-pages to search from
        -   *Category:* Indexed Search

    -   **indexedsearch.pagination_type**

        -   *Type:* `string`
        -   *Default:* `"simple"`
        -   *Label:* Pagination implementation used for search results
        -   *Enum:* \[ "simple", "slidingWindow" \]
        -   *Category:* Indexed Search

        Select between simple pagination (all pages) and sliding window pagination.

    -   **indexedsearch.page_links**

        -   *Type:* `int`
        -   *Default:* `10`
        -   *Label:* Maximum number of links shown for sliding window pagination
        -   *Category:* Indexed Search

        Defines the maximum number of page links displayed when sliding window pagination is active.
