Collabora Office on Debian Plesk, vhosts config

Hallo,
I got my Nextcloud running on https: cloud.mydomain.land

Now I want to install collabora Office, i know the offical https://nextcloud.com/collaboraonline/

I got collabora installed via docker
I createt a save subdomain over Plesk and the embedded LetsEncrypt https office.mydomain.land
I know that I have to use https: cloud.mydomain.land in the docker run command
I run all a2enmod commands as noticed in the offical TO DO.

The only question I have I am very, very unsure how to configure the VirtualHost properly.

  1. Where ist this thing (virtualHost) stored? I have acces over Plesk and SSH to my Debian 8X and Iā€™m running several subdomains as vhosts. Where should I look and store?

  2. How to configure the file, when I already used LetsEncrpt with Plesk for my Office.cloud.domain
    Becaus it says: "# SSL configuration, you may want to take the easy route instead and use Lets Encrypt!"
    What to fill in know?

Thanks

I tried following nginx code. I can only change it directly in Plesk (see Plesk docu)
FYI: I hide my domain with mydomain.land

<VirtualHost *:443>			

ServerName office.mydomain.land:443

		# SSL configuration, you may want to take the easy route instead and use Lets Encrypt!
		SSLEngine on
		 ssl_certificate             /opt/psa/var/certificates/cert-cc7e0I
    ssl_certificate_key         /opt/psa/var/certificates/cert-cc7e0I
    ssl_client_certificate      /opt/psa/var/certificates/cert-VvFQmK

		

		# Encoded slashes need to be allowed
		AllowEncodedSlashes NoDecode

		# 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
		ProxyPassMatch "/lool/(.*)/ws$" wss://127.0.0.1:9980/lool/$1/ws nocanon

		# 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

This will not be acceptet, Plesk comes back with:
Invalid nginx configuration: nginx: [emerg] unexpected end of file, expecting ";" or "}" in /var/www/vhosts/system/office.mydomain.land/conf/vhost_nginx.conf:39 nginx: configuration file /etc/nginx/nginx.conf test failed

Any ideas?