SSL problem mit nNextcloud und Collabora Online

Hallo,

Nach der installation von Nextcloud und Collabora Online + Connector.
wird mir beim aufrufen folgender Error angezeigt

“Collabora Online unbekannter Fehler: cURL error 51: Unable to communicate securely with peer: requested domain name does not match the server’s certificate.”

Was ich nicht verstehe ist das Das SSL zertifikat nicht passt obwohl es das ist was ich für die domain benutze, zudem ist es bei StartCom Zertifiziert, im Apache ist es auch richtig eingetragen.

Hat jemand ne idee? Benötigt ihr noch etwas?

MfG
lucy

keiner ne idee an was das liegen kann?

kann es eventuell daran liegen das ich kein Wildcard Zertifikat habe?
da ja collabora auf 127.0.0.1 zeigt:

<VirtualHost *:443>
      ServerName office.mysite.net

  # SSL configuration, you may want to take the easy route instead and use Lets Encrypt!
      SSLEngine on
    SSLCertificateFile "/etc/pki/tls/mysite/2_mysite.net.crt"
    SSLCertificateKeyFile "/etc/pki/tls/mysite/mysite-decrypted.key"
    SSLCertificateChainFile "/etc/pki/tls/mysite/1_root_bundle.crt"
      SSLProtocol             all -SSLv2 -SSLv3
      SSLCipherSuite ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS
      SSLHonorCipherOrder     on

  # Encoded slashes need to be allowed
      AllowEncodedSlashes On

  # Container uses a unique non-signed certificate
  SSLProxyEngine On
  SSLProxyVerify None
  SSLProxyCheckPeerCN Off
  SSLProxyCheckPeerName Off

  # keep the host
  ProxyPreserveHost On

  # static html, js, images, etc. served from loolwsd
  # loleaflet is the client part of LibreOffice Online
  ProxyPass           /loleaflet https://127.0.0.1:9980/loleaflet retry=0
  ProxyPassReverse    /loleaflet https://127.0.0.1:9980/loleaflet

  # WOPI discovery URL
  ProxyPass           /hosting/discovery https://127.0.0.1:9980/hosting/discovery retry=0
  ProxyPassReverse    /hosting/discovery https://127.0.0.1:9980/hosting/discovery

  # Main websocket
  ProxyPass   /lool/ws      wss://127.0.0.1:9980/lool/ws

  # Admin Console websocket
  ProxyPass   /lool/adminws wss://127.0.0.1:9980/lool/adminws

  # Download as, Fullscreen presentation and Image upload operations
  ProxyPass           /lool https://127.0.0.1:9980/lool
  ProxyPassReverse    /lool https://127.0.0.1:9980/lool
</VirtualHost>