в site-eneble для apache создал конфиг
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName
office.dx2one.tk SSLCertificateFile /etc/letsencrypt/live/
office.dx2one.tk/fullchain.pem SSLCertificateKeyFile /etc/letsencrypt/live/
office.dx2one.tk/privkey.pem Include /etc/letsencrypt/options-ssl-apache.conf
# 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</VirtualHost>
</IfModule>
~
но вместо сайта открывается дефолтная страница апача
почему ? что я упустил?