Collective.elastic.plone and collective.elastic.ingest

I’m using plone 6. I’ve created a fork from collective.elastic.plone and collective.elastic.ingest, to customize for my project. The idea is use a host with opensearch, the default search in company, and in this host I created a index called plone_intranet. In container plone, I’ve defined the environments variables:

      INDEX_SERVER: https://es01-search-h.dot.com
      INDEX_USE_SSL: 1
      INDEX_VERIFY_CERTS: 1
      INDEX_OPENSEARCH: 1
      INDEX_SSL_ASSERT_HOSTNAME: 1
      INDEX_NAME: plone_intranet
      INDEX_LOGIN: admin
      INDEX_PASSWORD: ...
      CELERY_BROKER: redis://...:6379/0
      OPENSEARCH_URL: https://es01-search-h.dot.com
      PLONE_SERVICE: https://backend-intranet01h.dot.com
      PLONE_SITE_PREFIX_METHOD: keep
      PLONE_SITE_PREFIX_PATH: intranet
      PLONE_PATH: intranet

But when service is up, the logs shows:

10.0.0.2 - - [18/Sep/2025:17:53:05 -0300] "GET /VirtualHostBase/https/backend-intranet01h.dot.com/VirtualHostRoot/Plone/%40cesp-schema HTTP/1.1" 404 110 "-" "python-requests/2.32.5"

The site id is ‘intranet’, not ‘Plone’. Any idea?